E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
bitmapfactory
android 从网络上下载图片
下载图片比较简单不过有个需要注意的是下载的图片不能太大要不然
BitmapFactory
在创建BItmap的时候会报OutOfMemoryError这个错 下面上代码publicBitmapreadImageBitmap
asdf39877
·
2012-09-26 16:00
android
BitmapFactory
.Options
public BitmapinBitmap如果设置,解码选项“对象的方法,采取将尝试重用这个位图加载内容时。publicintinDensity使用的位图的象素密度。publicbooleaninDither如果抖动是真实的,解码器将尝试到抖动的解码图像。publicbooleaninInputShareable此字段一起选择inPurgeable。publicbooleaninJustDecod
mujianwei
·
2012-09-25 14:00
Android Bitmap开发之旅--OOM探索
首先来分析一下OOM的原因,当我们使用
BitmapFactory
来decode一张3.5M大小的图
weihan1314
·
2012-09-25 14:00
java
android
虚拟机
编译器
如何将图片存入数据库中
.将图片转化为byte数组2.将byte数组放入contentvalues3.执行数据库的insert操作,将contentvalues里面的值存入sqlite代码大致如下://转换Bitmapbm=
BitmapFactory
.decodeResource
by317966834
·
2012-09-24 16:00
数据库
sqlite
manager
image
null
byte
解决Bitmap中的OOM问题
http://lcd.yesky.com/imagelist/2009/315/qwm3qsg1r0l9.jpg 这张网络图片非常大,如果直接用
BitmapFactory
.decodeStream(newURL
a859522265
·
2012-09-24 14:00
android
exception
layout
url
menu
encoding
android内存溢出的解决方法
-1.htmlAndroid内存溢出的解决办法http://www.eoeandroid.com/thread-66415-1-1.html1.当项目中包含大量图片,或者图片过大方法1:等比例缩小图片
BitmapFactory
.Optionsoptions
冯京宝
·
2012-09-21 16:00
Bitmap和Canvas学习笔记
1.从资源中获取位图可以使用BitmapDrawable或者
BitmapFactory
来获取资源中的位图。
xiabo851205
·
2012-09-19 20:00
bitmap 内存溢出OOM的解决办法分享
昨天遇到这个问题就是从一个输入流里调用
BitmapFactory
.decodeStream(this.getContentResolver().openInputStream(uri))得到一个bitmap
chaihuasong
·
2012-09-18 17:00
算法
虚拟机
android
null
手机
byte
ListView的优化 自己的demo
android.app.Activity; import android.content.Context; import android.graphics.Bitmap; import android.graphics.
BitmapFactory
sfshine
·
2012-09-17 13:00
ListView
android 图片平铺实现
(1)第一种利用系统提供的api实现 Bitmapbitmap=
BitmapFactory
.decodeResource(getResources(),R.drawable.pic); //bitmap
com360
·
2012-09-17 13:00
xml
android
api
null
初学Android,手势缩放图片(四十八)
packageWangLi.IO.GestureZoom; importandroid.app.Activity; importandroid.graphics.Bitmap; importandroid.graphics.
BitmapFactory
lee576
·
2012-09-17 11:00
android
velocity
Class
手机
float
Matrix
Android多媒体学习四:实现图像的编辑和合成
android.app.Activity; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.
BitmapFactory
longyi_java
·
2012-09-14 15:00
android
解决Android加载图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或
BitmapFactory
.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java
gao18bin
·
2012-09-13 10:00
private static String CompressPngFile(
privatestaticStringCompressPngFile(InputStreamis,
BitmapFactory
.OptionsnewOpts,StringfilePath){ newOpts.inPreferredConfig
guotong1988
·
2012-09-11 17:00
exception
String
OS
File
null
存储
android 图片压缩的方法
BitmapFactory
.Optionsoptions=new
BitmapFactory
.Options(); options.inJustDecodeBounds=true; //获取这个图片的宽和高
wangjia55
·
2012-09-10 08:00
android
exception
String
float
byte
Matrix
Android 从网上获取图片
importcom.yanjun.getImage.GetImage;importandroid.app.Activity;importandroid.graphics.Bitmap;importandroid.graphics.
BitmapFactory
海源溪
·
2012-09-09 14:48
android
图片
网上
从网上获取图片
android activity中画任意直线
packagelizm.lt; importandroid.app.Activity; importandroid.graphics.Bitmap; importandroid.graphics.
BitmapFactory
lizhenmingdirk
·
2012-09-07 19:00
android
null
Class
menu
Android实现图片缩放与旋转
com.android.matrix;import android.app.Activity;import android.graphics.Bitmap;import android.graphics.
BitmapFactory
yangdeli888
·
2012-09-07 17:00
android
image
UP
float
Matrix
Android 图片缩放与旋转
com.android.matrix;import android.app.Activity;import android.graphics.Bitmap;import android.graphics.
BitmapFactory
yangdeli888
·
2012-09-07 16:00
android
image
UP
float
Matrix
Android 图片压缩也即生成缩略图方法
在开发图片浏览器等软件是,很多时候要显示图片的缩略图,而一般情况下,我们要将图片按照固定大小取缩略图,一般取缩略图的方法是使用
BitmapFactory
的decodeFile方法,然后通过传递进去
BitmapFactory
.Option
wangjia55
·
2012-09-07 16:00
android获取图片文件头信息
/** *获取图片文件头信息 *@paramin *@return */ publicstatic
BitmapFactory
.OptionsgetImageOptions(InputStreamin
guotong1988
·
2012-09-07 11:00
android
null
转:Bitmap造成OOM的讨论与解决方案
android
BitmapFactory
的OutOfMemoryError: bitmap size exceeds VM budget解决方案 使用android提供的
BitmapFactory
sfshine
·
2012-09-04 13:00
bitmap
android图片内存优化
尽量不要使用setImageBitmap、setImageResource、
BitmapFactory
.decodeResource来设置一张大图,因为这些方法在完成decode后,最终都是通过java
csh159
·
2012-09-03 16:00
java
android
ListView
byte
Matrix
Android图像处理之Bitmap类
一、Bitmap的生成1.1
BitmapFactory
decode出Bitmap Bitmap实现在android.graphics包中。但是Bitmap类的构造函数是私有的,外面并不能实
ccccdddxxx
·
2012-09-03 15:00
Android Bitmap和Canvas学习笔记
1.从资源中获取位图可以使用BitmapDrawable或者
BitmapFactory
来获取资源中的位图。
ccccdddxxx
·
2012-09-03 15:00
android
null
Class
float
resources
Matrix
一个函数,很好解决图片过大导致内存溢出问题
public Bitmap getLoacalBitmap(String path) {
BitmapFactory
.Options options = new
sunsz
·
2012-09-01 15:00
内存溢出
Camera模仿3D效果的小例子(图片无限旋转)
importandroid.content.Context;importandroid.graphics.Bitmap;importandroid.graphics.
BitmapFactory
;importandroid.graphics.Camera
冯京宝
·
2012-08-29 18:00
android byte[]数组,bitmap,drawable之间的相互转换
Byte[]转Bitmap
BitmapFactory
.decodeByteArray(data,0,data.length);复制代码Bitmap转Byte[]ByteArrayOutputStreambaos
Yelbosh
·
2012-08-28 17:00
android
byte
Android Bitmap和Canvas学习笔记
1.从资源中获取位图可以使用BitmapDrawable或者
BitmapFactory
来获取资源中的位图。
fyang2007
·
2012-08-28 14:00
android
object
null
float
resources
Matrix
android .9 图片的全能适配方法
publicstaticDrawablegetScaleNinePatchDrawable(intresId){ ActivitymContext=WaWaSystem.getActivity(); intstandardBmpHeight=413;
BitmapFactory
.OptionsoptDecodeBounds
liuxiIT
·
2012-08-27 14:00
android
null
float
解决Bitmap读取频发OOM
* @author Thunder * @version * @2012-8-24 */ public class BitmapUtil { private static
BitmapFactory
.Options
thunder_yan
·
2012-08-25 09:00
android
oom
bitmap
最省内存
android获取网络图片的用法
BitmapFactory
.decodeByteArray
资源描述:关于android获取网络图片主要是把网络图片的数据流读入到内存中然后用1.BitmapbitMap=
BitmapFactory
.decodeByteArray(data,0,length);
wangqilin8888
·
2012-08-24 15:00
android
exception
数据库
网络
String
byte
BitmapFactory
.Options详解 怎样获取图片的大小 遇到大一些的图片,遇到OOM(Out Of Memory)的问题
新问题又来了,在通过
BitmapFactory
.decodeFile(Stringpath)方法将突破转成Bitmap时,遇到大一些的图片,我们经常会遇到OOM(OutOfMemory)的问题。
wangqilin8888
·
2012-08-23 16:00
null
Path
android将图片转成字符串,再将字符串转成图片 (base64处理的字符串)
Bitmapbitmap=null; try{ byte[]bitmapArray; bitmapArray=Base64.decode(string,Base64.DEFAULT);bitmap=
BitmapFactory
.decode
zhengzhihao1
·
2012-08-23 14:00
android
exception
String
null
byte
Android中 Bitmap和Drawable相互转换的方法
1.Drawable—>BitmapResourcesres=getResources();Bitmapbmp=
BitmapFactory
.decodeResource(res,R.drawable.sample
hezhipin610039
·
2012-08-23 11:00
android
null
byte
resources
Android 图片的加载与保存
File("/data/data/capture.bmp"); if(file.exists()){ //判断文件是否存在 bm =
BitmapFactory
.decodeFile
hezhipin610039
·
2012-08-23 11:00
android
手机
Displaying Bitmaps Efficiently(2)-Processing Bitmaps Off the UI Thread
The
BitmapFactory
.decode*methods,discussedintheLoadLargeBitmapsEfficientlylesson,shouldnotbeexecutedonthemainUIthreadifthesourcedataisreadfromdiskoranetworklocation
pierce0young
·
2012-08-22 21:00
android裁剪图片
importandroid.app.Activity; importandroid.content.Intent; importandroid.graphics.Bitmap; importandroid.graphics.
BitmapFactory
csh159
·
2012-08-21 17:00
android
exception
image
layout
null
button
Android有效解决加载大图片时内存溢出的问题
出处:http://www.cnblogs.com/lovelili/articles/2177276.html尽量不要使用setImageBitmap或setImageResource或
BitmapFactory
.decodeResource
mmmlllii
·
2012-08-21 11:00
java
游戏
虚拟机
优化
android
android 固定大小取图片缩略图
在做一个项目的时候有个要求就是固定大小取图像的缩略图,android2.2以前的话都是通过
BitmapFactory
.Options设置Options通过一定的宽高比例来得到一个缩略图,但是得到的并不是要求的固定大小的缩略图
lxp198837
·
2012-08-21 11:00
根据原图路径获得对应的缩略图
以后才有用网上有很多介绍我就不啰嗦了直接上代码publicstaticBitmapgetBitmap(ContentResolvercr,StringfileName){Bitmapbitmap=null;
BitmapFactory
.Optionsoptions
zhou699
·
2012-08-19 10:00
Android图片内存优化的几点心得
1、将图片转化为缩略图再加载:
BitmapFactory
.Optionsoptions=new
BitmapFactory
.Options(); options.inSampleSize=2; Bitmapimg
jdsjlzx
·
2012-08-17 11:00
android
ListView
手机
byte
Matrix
android实现涂鸦,保存涂鸦后的图片,清屏
importandroid.annotation.SuppressLint; importandroid.content.Context; importandroid.graphics.Bitmap; importandroid.graphics.
BitmapFactory
csh159
·
2012-08-17 10:00
android
layout
null
Class
float
button
java.lang.IllegalStateException: Immutable bitmap passed to Canvas constructor错误解决办法
本来代码中我是这样写的BitmaporiginalBitmap=
BitmapFactory
.decodeResource(getResources(), R.drawable.a)一直报错,经过网上的搜索说是不允许直接修改
csh159
·
2012-08-16 14:00
immutable
Constructor
Android获取图片大小以及获取指定大小的缩略图
http://www.lephone.net/thread-1191-1-1.html首先我们来介绍一下
BitmapFactory
.Options这个类,它是实现我们目标的关键。
forlong401
·
2012-08-16 10:00
Android获取图片指定大小的缩略图
thepurpledream/item/27782ec8b57f4513505058e7在开发图片浏览器等软件是,很多时候要显示图片的缩略图,而一般情况下,我们要将图片按照固定大小取缩略图,一般取缩略图的方法是使用
BitmapFactory
forlong401
·
2012-08-16 10:00
Android以最省内存的方式读取本地资源的方法
方法一: /** *获取本地图片并指定高度和宽度 */ publicstaticBitmapgetNativeImage(StringimagePath) {
BitmapFactory
.Optionsoptions
jdsjlzx
·
2012-08-16 06:00
android
String
null
float
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或
BitmapFactory
.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java
jdsjlzx
·
2012-08-14 20:00
java
游戏
android
优化
虚拟机
Android解决java.lang.OutOfMemoryError: bitmap size exceeds VM budget
昨天遇到这个问题就是从一个输入流里调用
BitmapFactory
.decodeStream(this.getContentResolver().openInputStream(uri))得到一个bitmap
xyylchq
·
2012-08-14 15:00
算法
虚拟机
android
null
手机
byte
Android Bitmap和Canvas学习
1.从资源中获取位图可以使用BitmapDrawable或者
BitmapFactory
来获取资源中的位图。
yf210yf
·
2012-08-14 09:00
android
null
Class
float
resources
Matrix
上一页
44
45
46
47
48
49
50
51
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他