私は私のbitmap
とI want to convert my bitmap to save as image in another new file by below code.
注: Galaxy S3 を除くすべてのデバイスで問題なく動作します。このコードを S3 で実行可能にするのを手伝ってくれる人はいますか? 新しいファイルに変換している間、私は常にこのトーストを取得します。誰でも問題が発生する可能性があることを知っています。
Bitmap photo = (Bitmap) extras.get("data");
selectedImagePath = String.valueOf(System.currentTimeMillis())
+ ".jpg";
Log.i("TAG", "new selectedImagePath before file "
+ selectedImagePath);
File file = new File(Environment.getExternalStorageDirectory(),
selectedImagePath);
try {
file.createNewFile();
FileOutputStream fos = new FileOutputStream(file);
photo.compress(Bitmap.CompressFormat.PNG, 95, fos);
} catch (IOException e) {
// TODO Auto-generated catch block
Toast.makeText(this,
"Sorry, Camera Crashed-Please Report as Crash A.",
Toast.LENGTH_LONG).show();
}
前もって感謝します。