0

我正在将相机捕获的图像保存到数据库并从数据库中检索它。我再次捕获它并显示在图像视图中,因此当前图像显示在我的 android OS 版本 4.1 中。

同样,不适用于具有操作系统版本 4.2 的三星核心。

请提出任何解决方案,因为这是操作系统问题或其他问题

点击按钮

Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
startActivityForResult(intent, 0);

在 imageview 上设置图像,

   @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode == 0 && resultCode == RESULT_OK) {
            if (data != null) {

                photo = (Bitmap) data.getExtras().get("data");

                Log.d("camera ---- > ", "" + data.getExtras().get("data"));

                img.setImageBitmap(photo);

            }
        }
    }

保存到 sqlite 数据库,

     ByteArrayOutputStream baos = new ByteArrayOutputStream();
                photo.compress(Bitmap.CompressFormat.JPEG, 100, baos);
                byte[] byteArray = baos.toByteArray();
                parent.setImage(byteArray);

从数据库中检索它并显示它..

            ByteArrayInputStream imageStream = new ByteArrayInputStream(outImage);
            Bitmap theImage = BitmapFactory.decodeStream(imageStream);
            img.setImageBitmap(theImage);
4

0 回答 0