位图太大。尝试全部

时间:2018-08-31 13:24:59

标签: android bitmap base64 out-of-memory

伙计们,我已经连续两天面临这个问题。我想从图库中选择一个图像并将其转换为Base64方法。我尝试过毕加索,但我的imageview很大。你能帮我么。我尝试了所有方法,但将其转换为位图然后转换为base64时,内存不足对我来说太多了。

BitmapDrawable drawable = (BitmapDrawable) ProfilePic.getDrawable();
                            yourSelectedIBitmapDrawable drawable = (BitmapDrawable) ProfilePic.getDrawable();
                            yourSelectedImage = drawable.getBitmap();mage = drawable.getBitmap();

将此位图转换为Base64的代码。是否有可能跳过位图并直接转换为Base64

private String encodeToBase64(Bitmap image) {

        Bitmap immagex = image;
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        immagex.compress(Bitmap.CompressFormat.JPEG, 100, baos);
        byte[] b = baos.toByteArray();
        String imageEncoded = Base64.encodeToString(b,Base64.DEFAULT);
        //Log.e("LOOK", imageEncoded);
        return imageEncoded;
    }

个人资料Pic是Imageview的名称。

编辑:所以Guyz的方法之一是使用大堆,但是Google表示除非绝对必要,否则您不应该使用它。为我工作的另一个答案是公认的答案。现在我想出了自己的解决方案。从理论上讲,我正在使用Picasso将图像加载到图像视图中。那么,如果我可以从ImageView中提取图像呢?不是来自URI或路径,而是来自Imageview。这样,您的图像就已经被毕加索缩小了。毕加索提供回调来指示成功或失败。因此,在成功时,您可以访问ImageView的缓存并从其中提取位图。

我将很快将代码发布为答案。我尝试了一下,即使最初的35Mb图像也可以转换为位图,而不会出现内存不足的情况。

这是我的回答:https://stackoverflow.com/a/52125006/6022584

2 个答案:

答案 0 :(得分:0)

您可以尝试使用缓冲区读取位图数据。像这样的东西:

private String encodeToBase64(Bitmap image) {
  // get an InputStream
  ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
  image.compress(CompressFormat.PNG, 0, baos); 
  byte[] bitmapdata = baos.toByteArray();
  ByteArrayInputStream bais = new ByteArrayInputStream(bitmapdata);

  // prepare a buffer to read the inputStream
  byte[] buffer = new byte[10 * ONE_KIO];  // ONE_KIO = 1024
  int bytesRead;

  // prepare the stream to encode in Base64
  ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
  Base64OutputStream base64OutputStream = new Base64OutputStream(outputStream, Base64.DEFAULT);

  // read the inputStream
  while ((bytesRead = bais.read(buffer)) != -1) {
    base64OutputStream.write(buffer, 0, bytesRead);
  }
  base64OutputStream.close();

  // get the encoded result string
  return outputStream.toString();
}

答案 1 :(得分:0)

这是我的有效代码。 “新问题”是“我的活动”的名字

if (requestCode == PICK_IMAGE) {
            if(resultCode == RESULT_OK){
                //isImageFromGallery = true;
                //isImageSelected = true;
                ImagePath = data.getData();

                Picasso.get()
                        .load(ImagePath)
                        .resize(1024,1024)
                        .onlyScaleDown()
                        .centerCrop()
                        .into(picture, new Callback(){
                            @Override
                            public void onSuccess() {
                                BitmapDrawable drawable = (BitmapDrawable) picture.getDrawable();
                                yourSelectedImage = drawable.getBitmap();
                                //isImageSelected = true;

                                Log.d("FileSize",Formatter.formatFileSize(NewIssue.this,
                                        yourSelectedImage.getByteCount()));
                            }

                            @Override
                            public void onError(Exception e) {
                                Toast.makeText(NewIssue.this, "Could Not Load Image", Toast.LENGTH_SHORT).show();
                            }
                        });

            }
        }