来自相机的图片质量差(android)

时间:2015-09-09 19:29:32

标签: android bitmap camera

抱歉我的英文。我从相机获取图像,但我的相机质量图像质量差。我的代码:

 Bitmap thumbnail = (Bitmap) imageReturnedIntent.getExtras().get("data");
                    ByteArrayOutputStream bytes = new ByteArrayOutputStream();
                    thumbnail.compress(Bitmap.CompressFormat.JPEG, 100, bytes);

                    File destination = new File(Environment.getExternalStorageDirectory(),
                            System.currentTimeMillis() + ".jpg");

                    FileOutputStream fo;
                    try {
                        destination.createNewFile();
                        fo = new FileOutputStream(destination);
                        fo.write(bytes.toByteArray());
                        fo.close();
                    } catch (FileNotFoundException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }


                    image.setImageBitmap(thumbnail);

1 个答案:

答案 0 :(得分:0)

  

我从相机获取图像,但我的相机质量图像质量差。

显然,您未在EXTRA_OUTPUT中加入Intent,因此您只获得缩略图。引用the documentation for ACTION_IMAGE_CAPTURE

  

调用者可以传递额外的EXTRA_OUTPUT来控制该图像的写入位置。如果EXTRA_OUTPUT不存在,则在额外字段中返回小尺寸图像作为Bitmap对象。这对于只需要小图像的应用程序非常有用。如果存在EXTRA_OUTPUT,则将将全尺寸图像写入EXTRA_OUTPUT的Uri值。