相关文章推荐
寂寞的灯泡  ·  python ...·  2 周前    · 
果断的汉堡包  ·  java - ...·  1 年前    · 
没有腹肌的沙滩裤  ·  AttributeError: ...·  1 年前    · 
备案 控制台
学习
实践
活动
专区
工具
TVP
写文章
专栏首页 蜉蝣禅修之道 Android Base64字符串转换成图片
2 0

海报分享

Android Base64字符串转换成图片

转自:http://blog.sina.com.cn/s/blog_638686c601013xh0.html

public Bitmap stringtoBitmap(String string){ //将字符串转换成Bitmap类型 Bitmap bitmap=null; try { byte[]bitmapArray; bitmapArray=Base64.decode(string, Base64.DEFAULT); bitmap=BitmapFactory.decodeByteArray(bitmapArray, 0, bitmapArray.length); } catch (Exception e) { e.printStackTrace(); return bitmap; public String bitmaptoString(Bitmap bitmap){

//将Bitmap转换成字符串 String string=null; ByteArrayOutputStream bStream=new ByteArrayOutputStream(); bitmap.compress(CompressFormat.PNG,100,bStream); byte[]bytes=bStream.toByteArray(); string=Base64.encodeToString(bytes,Base64.DEFAULT); return string; }

本文参与 腾讯云自媒体分享计划 ,欢迎热爱写作的你一起参与!
本文分享自作者个人站点/博客: https://blog.csdn.net/xanxus46 复制
如有侵权,请联系 cloudcommunity@tencent.com 删除。