博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android sqlite数据库存取图片信息
阅读量:5019 次
发布时间:2019-06-12

本文共 674 字,大约阅读时间需要 2 分钟。

Android sqlite数据库存取图片信息

存储图片:bitmap 

 

private byte[] getIconData(Bitmap bitmap){    int size = bitmap.getWidth()*bitmap.getHeight()*4;    ByteArrayOutputStream out = new ByteArrayOutputStream(size);    try {        bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);        out.close();    } catch (IOException e) {        e.printStackTrace();    }    return out.toByteArray();}

 

获取图片:

 

Bitmap getIconFromCursor(Cursor c, int iconIndex) {    byte[] data = c.getBlob(iconIndex);    try {        return BitmapFactory.decodeByteArray(data, 0, data.length);    } catch (Exception e) {        return null;    }}

网盘android学习视频分享:

 

 

 

转载于:https://www.cnblogs.com/james1207/p/3343492.html

你可能感兴趣的文章
[bbk2190] 第31集 - Chapter 09-Optimizing Sore Perations(00)
查看>>
关于jQuery事件绑定放在head中没有响应的问题
查看>>
分页显示数据
查看>>
初读《数学之美》........................(2)
查看>>
MyEclipse性能优化
查看>>
win7使用putty链接linux
查看>>
《Linux内核分析》 第二节 操作系统是如何工作的
查看>>
自行车出租系统错误集3
查看>>
软件工程第3次作业
查看>>
高性能HTTP加速器Varnish(安装配置篇)
查看>>
clumsy 0.1 测试工具(延迟\掉包\节流\重发\乱序\篡改)
查看>>
新建 ASP.NET Core MVC 项目 -- Hello World!
查看>>
1047 Integer Inquiry
查看>>
010 线程通信
查看>>
eclipse设置web项目发布到tomcat根目录下
查看>>
架构演变
查看>>
【DFS】codeforces B. Sagheer, the Hausmeister
查看>>
Boost线程库学习笔记
查看>>
2.理解网络协议
查看>>
iframe自适应高度问题
查看>>