在這裏我需要保存什麼我dwan的油漆和背景iamge到SD卡。嘗試了一些方法,但在這裏只保存背景image.paints不保存。你有任何人建議我。如何將繪圖保存到android中的sdcard
public void save() {
String filename5;
Date date = new Date(0);
SimpleDateFormat sdf = new SimpleDateFormat ("yyyyMMddHHmmss");
filename5 = sdf.format(date);
try{
mBitmap=BitmapFactory.decodeResource(getResources(),R.drawable.writingsapce);
String path = Environment.getExternalStorageDirectory().toString();
OutputStream fOut = null;
File file = new File(path, "/DCIM/"+filename5+".jpg");
fOut = new FileOutputStream(file);
mBitmap.compress(Bitmap.CompressFormat.JPEG, 85, fOut);
fOut.flush();
fOut.close();
MediaStore.Images.Media.insertImage(getContentResolver(),file.getAbsolutePath(),file.getName(),file.getName());
} catch (Exception e) {
e.printStackTrace();
}}
我覺得這裏你是不是節省您繪製的新形象,但只是原來的一個。把你的繪圖方法,所以我們可以告訴你如何繼續;-) – youssoua 2012-02-20 14:00:18