問題が 1 つあります。カメラから画像を取得しようとすると、品質が非常に低くなります。最初に、カメラを使用して写真をキャプチャし、ディレクトリに保存すると同時にその写真を取得してアプリに表示します。ディレクトリ内に保存された写真は高品質ですが、ディレクトリから取得すると品質が低くなります。以下は私のサンプルコードです:
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
if (requestCode == CAMERA_PIC_REQUEST) {
Bitmap thumbnail = (Bitmap) intent.getExtras().get("data");
if (g==1)
{
ImageView myImage = (ImageView) findViewById(R.id.img5);
myImage.setImageBitmap(thumbnail);
View a = findViewById(R.id.img5);
a.setVisibility(View.VISIBLE);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
thumbnail.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byteArray1 = stream.toByteArray();
}
}
解決策/提案はありますか? ありがとう :)
解決済み
以下のAntrrometが提供するコードに従うと、問題は解決しました