0

所以我已经让我的图像成功传递到一个 URI ......但是我不知道如何保存它或将它转换为位图,同时仍然保持分辨率。有什么建议么?谢谢你。

photoButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            // CALL THE PICTURE (this works)

            File t = new File (STORAGE_PATH + "savedAndroid.jpg");
            mURI = Uri.fromFile(t);
            i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
            i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, mURI);
            startActivityForResult(i,0); //0 is default camera
        }
    });

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    imageView.setImageURI(mURI); //this seems to work...by itself


      //save the image or convert it to a bitmap to use with tesseract...
}
4

1 回答 1

0
InputStream is = context.getContentResolver().openInputStream(mURI);
Bitmap bitmap = BitmapFactory.decodeStream(is, null, new BitmapFactory.Options());

然后随心所欲地使用它。希望这可以帮助。

于 2013-05-08T00:15:35.077 回答