码迷,mamicode.com
首页 > 移动开发 > 详细

【android】把view保存为图片的方法以及解决保存后图片背景变黑色的问题

时间:2014-08-23 11:19:50      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:android   图片   

上代码:

public class MainActivity extends Activity {
	ImageView imgView;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		imgView = (ImageView) findViewById(R.id.imageView);
		imgView.setDrawingCacheEnabled(true);
		// this is the important code :)  
		// Without it the view will have a dimension of 0,0 and the bitmap will be null          
		imgView.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), 
		            MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
		imgView.layout(0, 0, imgView.getMeasuredWidth(), imgView.getMeasuredHeight()); 
		Bitmap bitmap = Bitmap.createBitmap(imgView.getDrawingCache());
		imgView.setDrawingCacheEnabled(false);
		String strPath ="/testSaveView/"+UUID.randomUUID().toString()+".png";
		if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
		 {
			 File sdCardDir=Environment.getExternalStorageDirectory();
			 FileOutputStream fos = null;
			 try{
				 File file = new File(sdCardDir,strPath);
				 if (!file.getParentFile().exists()) {
					 file.getParentFile().mkdirs();
				 }
				 fos = new FileOutputStream(file);
				 
				//当指定压缩格式为PNG时保存下来的图片显示正常
				 bitmap.compress(CompressFormat.JPEG, 100, fos); 
				 
				//当指定压缩格式为JPEG时保存下来的图片背景为黑色
//				 bitmap.compress(CompressFormat.JPEG, 100, fos); 
				 fos.flush();
			 }catch(Exception e){
				 e.printStackTrace();
			 }finally{
				 try {
					 fos.close();
				 } catch (IOException e) {
					 e.printStackTrace();
				 }
			 }
		 }
	}
}


activity_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <ImageView 
        android:id="@+id/imageView"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:scaleType="centerInside"
        android:src="@drawable/ic_launcher"/>
</LinearLayout>


需要注意两个问题:

一、调用getDrawingCache()前先要测量,否则的话得到的bitmap为null,这个我在OnCreate()、OnStart()、OnResume()方法里都试验过。

二、当调用bitmap.compress(CompressFormat.JPEG, 100, fos);保存为图片时发现图片背景为黑色,如下图:

bubuko.com,布布扣

这时只需要改成用png保存就可以了,bitmap.compress(CompressFormat.PNG, 100, fos);,如下图:

bubuko.com,布布扣



【android】把view保存为图片的方法以及解决保存后图片背景变黑色的问题

标签:android   图片   

原文地址:http://blog.csdn.net/u011494050/article/details/38776913

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!