ユーザーがカメラを使用して写真を撮り、指定したフォルダーに保存できるアプリを作成しようとしています。ただし、imageView から PNG ファイルに変換すると、品質が大幅に低下します。
このコードを使用することで、品質が高く保たれると思いました
bmap.compress(Bitmap.CompressFormat.PNG, 100, output);
しかし、品質を 100 から低い数値に変更しても、違いはわかりません。
if (requestCode == cameraData && resultCode == RESULT_OK
&& null != data) {
Bitmap photo = (Bitmap) data.getExtras().get("data");
ImageView imageView = (ImageView) findViewById(R.id.imgView);
imageView.setImageBitmap(photo);
// convert imageview to bitm
imageView.buildDrawingCache();
final Bitmap bmap = imageView.getDrawingCache();
addIt.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
OutputStream output;
// Find the SD Card path
File filepath = Environment.getExternalStorageDirectory();
// Create a new folder AndroidBegin in SD Card
File dir = new File(filepath.getAbsolutePath()
+ "/filepath1/");
dir.mkdirs();
// Create a name for the saved image
File file = new File(dir, "image.png");
// Notify the user on successful save
Toast.makeText(Images.this, "Image Saved to SD Card",
Toast.LENGTH_SHORT).show();
try {
// Image starts saving
output = new FileOutputStream(file);
// Compress into png format image from 0% - 100%, using
// 100% for this tutorial
bmap.compress(Bitmap.CompressFormat.PNG, 100, output);
output.flush();
output.close();
Intent myIntent = new Intent(Images.this,
MyPreferencesActivity.class);
startActivity(myIntent);
}
// Catch exceptions
catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}