为了账号安全,请及时绑定邮箱和手机立即绑定

Android位图到Base64字符串

Android位图到Base64字符串

慕婉清6462132 2019-10-28 15:36:31
如何将大的位图(用手机的相机拍摄的照片)转换为Base64字符串?
查看完整描述

3 回答

?
PIPIONE

TA贡献1829条经验 获得超9个赞

使用以下方法将位图转换为字节数组:


ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();  

bitmap.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream);

byte[] byteArray = byteArrayOutputStream .toByteArray();

从字节数组编码base64使用以下方法


String encoded = Base64.encodeToString(byteArray, Base64.DEFAULT);


查看完整回答
反对 回复 2019-10-28
?
qq_遁去的一_1

TA贡献1725条经验 获得超7个赞

您将图像的所有字节加载到字节数组中,这很可能会使应用程序在低端设备中崩溃。相反,我首先将图像写入文件并使用Apache的Base64InputStream类读取它。然后,您可以直接从该文件的InputStream创建Base64字符串。它看起来像这样:


//Don't forget the manifest permission to write files

final FileOutputStream fos = new FileOutputStream(yourFileHere); 

bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);


fos.close();


final InputStream is = new Base64InputStream( new FileInputStream(yourFileHere) );


//Now that we have the InputStream, we can read it and put it into the String

final StringWriter writer = new StringWriter();

IOUtils.copy(is , writer, encoding);

final String yourBase64String = writer.toString();

如您所见,以上解决方案直接与流一起使用,从而避免了将所有字节加载到变量中的需要,因此使内存占用空间降低了,并且在低端设备中崩溃的可能性较小。仍然存在一个问题,那就是将Base64字符串本身放入String变量中并不是一个好主意,因为它再次可能会导致OutOfMemory错误。但是至少我们通过消除字节数组将内存消耗减少了一半。


如果要跳过写入文件的步骤,则必须将OutputStream转换为InputStream,这并不是那么简单(必须使用PipedInputStream,但这要复杂一些,因为两个流必须始终处于不同的线程中)。


查看完整回答
反对 回复 2019-10-28
  • 3 回答
  • 0 关注
  • 407 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信