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
createBitmap
Android 开发常用代码片段
R.drawable.moon); Matrixmatrix=newMatrix(); matrix.postRotate(-90);//旋转的角度 BitmapresizedBitmap=Bitmap.
createBitmap
wuxinzaiyu
·
2013-05-22 14:00
android
创建bitmap另一种方式
Bitmaptarget=Bitmap.
createBitmap
(size,size,getConfig(bitmap)); intwidth=Math.round(scale*bitmap.getWidth
zhengdan66
·
2013-05-15 14:00
Out of Memory异常几种优化方法!!!!!!!!!!!!!
适当压缩尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
dylancao
·
2013-05-15 13:28
Android--优化性能
Out of Memory异常几种优化方法!!!!!!!!!!!!!
适当压缩尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
dylancao
·
2013-05-15 13:00
Android从view得到bitmap及bitmap叠加和保存
=0){ bitmap=Bitmap.
createBitmap
(width,height,B
wuzoujing
·
2013-05-13 17:00
android
bitmap
canvas
android Bitmap用法总结
1、Drawable → Bitmappublicstatic BitmapdrawableToBitmap(Drawabledrawable){Bitmapbitmap=Bitmap.
createBitmap
chen825919148
·
2013-05-10 15:00
Android下常用的图像处理程序(灰度化、线性灰度变化、二值化)
intwidth=bmSrc.getWidth(); intheight=bmSrc.getHeight(); //创建目标灰度图像 BitmapbmpGray=null; bmpGray=Bitmap.
createBitmap
xdhywj
·
2013-05-05 12:00
android在处理图片资源的时候,Drawable、Bitmap、byte[]之间的转换
1、Drawable→BitmappublicstaticBitmapdrawableToBitmap(Drawabledrawable){ Bitmapbitmap=Bitmap .
createBitmap
xdhywj
·
2013-05-05 10:00
android Bitmap用法总结
1、Drawable → Bitmappublicstatic BitmapdrawableToBitmap(Drawabledrawable){Bitmapbitmap=Bitmap.
createBitmap
a2012s
·
2013-05-03 11:00
图片合成
privateBitmaponCompositeImages(){ Bitmapbmp=null; bmp=Bitmap.
createBitmap
(srcBitmap.getWidth(), srcBitmap.getHeight
androidzhaoxiaogang
·
2013-05-02 17:00
Android中实现绘制图片指定区域
//返回值为Bitmap Bitmapbitmap=getImage(R.drawable.explosion2); //
createBitmap
(Bitmapsource,intx,inty,intwidth
sb1ue
·
2013-04-30 16:00
Android 有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
chang_xing
·
2013-04-30 11:00
android Bitmap用法总结
androidBitmap用法总结 1、Drawable → Bitmappublicstatic BitmapdrawableToBitmap(Drawabledrawable){Bitmapbitmap=Bitmap.
createBitmap
jie1991liu
·
2013-04-27 17:00
Android图片处理实例介绍(图)
paramroundPx*@return*/publicstaticBitmapconvertToRoundedCorner(Bitmapbmp,floatroundPx){BitmapnewBmp=Bitmap.
createBitmap
·
2013-04-26 17:54
如何重新设置bimpat的大小?
Bitmapbmp=Bitmap.
createBitmap
(bmp,0,0,bmp.getWidth(),bmp.getHeight(),aM
CSDN_Ask
·
2013-04-26 10:00
android
移动开发
Bitmap与Drawable,byte[]之间的转化
drawable---->bitmapViewCode1publicstaticBitmapdrawableToBitmap(Drawabledrawable){ 2Bitmapbitmap=Bitmap 3.
createBitmap
dyllove98
·
2013-04-16 21:00
Bitmap.
createBitmap
java.lang.IllegalArgumentException: width and height must be > 0 问题解决
java.lang.IllegalArgumentException:widthandheightmustbe>0 在postraotate之前需要设置转换矩形区域旋转时要判断旋转角度是否大于0,否则不做旋转。缺一报错Matrixmt=newMatrix();floatdelta=angle-lastAngle; lastAngle=angle; Log.e("test",bmpW+"_____"
dreamer0924
·
2013-04-16 14:00
android显示大图片的一些技巧
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图, 因为这些函数在完成decode后,最终都是通过java层的
createBitmap
892848153
·
2013-04-15 11:00
android
2013.04.10——— android 图片缓存之三
createBitmap
2013.04.10——— android 图片缓存之三
createBitmap
参考: http://blog.csdn.net/mujianwei/article/details/8016844
lipeng88213
·
2013-04-10 15:00
android
Android 平铺背景图片
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.pic); //bitmap = Bitmap.
createBitmap
jazywoo123
·
2013-04-07 11:00
问题小结(24)--获取已有图片的镜像图片
publicBitmapconvertBmp(Bitmapbmp){ intw=bmp.getWidth(); inth=bmp.getHeight(); BitmapconvertBmp=Bitmap.
createBitmap
agods
·
2013-04-02 09:00
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
心如明镜
·
2013-03-28 18:46
android
oom
内存
图片圆角
intpixels){ intwidth=bitmap.getWidth(); intheight=bitmap.getHeight(); BitmapcreBitmap=Bitmap.
createBitmap
带梦想一7飞
·
2013-03-27 11:00
创建一个没啥用处的Drawable
Drawabledrawable=newBitmapDrawable(Bitmap.
createBitmap
(1,1,Config.ARGB_4444)); drawable.setAlpha(0);好了
ft2028739
·
2013-03-26 17:00
android
使用Bitmap.
createBitmap
遇到的问题
Bitmap.java中
createBitmap
函数调用的是以下重构方法publicstaticBitmapcreateBitmap(Bitmapsource,intx,inty,intwidth,intheight
panda1234lee
·
2013-03-26 11:00
android
android bitmap的放大缩小
Bitmapbitmap){ Matrixmatrix=newMatrix(); matrix.postScale(0.8f,0.8f); //长和宽放大缩小的比例 BitmapresizeBmp=Bitmap.
createBitmap
zaq123q
·
2013-03-19 10:00
Android 中对于图片的内存优化方法
对图片本身进行操作尽量不要使用setImageBitmap、setImageResource、BitmapFactory.decodeResource来设置一张大图,因为这些方法在完成decode后,最终都是通过Java层的
createBitmap
·
2013-03-14 23:26
[转]Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
chriszeng87
·
2013-03-12 17:00
android
大图片的加载
Android 图片转灰度
intwidth,height; height=bmSrc.getHeight(); width=bmSrc.getWidth(); BitmapbmpGray=null; bmpGray=Bitmap.
createBitmap
Vestigge
·
2013-03-01 11:00
bitmap
灰度
android 使图片显示 圆角
将方形图片显示为圆角图//获得圆角图片的方法 publicBitmapgetRoundedCornerBitmap(Bitmapbitmap,floatroundPx){ Bitmapoutput=Bitmap.
createBitmap
gg137608987
·
2013-02-27 16:00
注意代码之间的逻辑性(拿自己写的一段代码作为例子)
mBack.isRecycled()){ mBack.recycle(); mBack=null; } try{ mBack=Bitmap.
createBitmap
(mPhotoFrame.getWidth
zhangjiaofa
·
2013-02-21 13:00
Android 开发常用代码片段
R.drawable.moon); Matrixmatrix=newMatrix(); matrix.postRotate(-90);//旋转的角度 BitmapresizedBitmap=Bitmap.
createBitmap
easyer2012
·
2013-02-15 21:00
Android 开发常用代码片段
,R.drawable.moon);Matrixmatrix=newMatrix();matrix.postRotate(-90);//旋转的角度BitmapresizedBitmap=Bitmap.
createBitmap
BruceZhang
·
2013-02-09 17:19
Android开发
android开发
Android
Android 开发常用代码片段
R.drawable.moon); Matrixmatrix=newMatrix(); matrix.postRotate(-90);//旋转的角度 BitmapresizedBitmap=Bitmap.
createBitmap
DLUTBruceZhang
·
2013-02-09 17:00
Android开发
Android开发
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
fengqiaoyebo2008
·
2013-02-01 14:00
android
android
android
内存溢出
Android 图片圆角处理
publicstaticBitmapgetRoundedCornerBitmap(BitmapsourceBitmap,floatroundX,floatroundY){ try{ BitmaptargetBitmap=Bitmap.
createBitmap
wangleyiang
·
2013-01-29 11:00
android
图片圆角
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
九洲北研
·
2013-01-28 18:00
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
Thanks
·
2013-01-27 18:00
Android加载大图片内存溢出的问题总结
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
wuxifu001
·
2013-01-24 01:00
android 图片圆角处理
//获得圆角图片的方法publicstaticBitmapgetRoundedCornerBitmap(Bitmapbitmap,floatroundPx){Bitmapoutput=Bitmap.
createBitmap
562089445
·
2013-01-23 20:24
android
图片
圆角
android camera照片旋转90度
bMapRotate旋转后的照片 Matrixmatrix=newMatrix();matrix.reset();matrix.postRotate(90);BitmapbMapRotate=Bitmap.
createBitmap
andylao62
·
2013-01-23 16:00
android
android
android
Camera
Camera
照片
android应用内截图问题
android截图方法:(以下是转载的)方法一:Viewview=getWindow().getDecorView();Bitmapbmp=Bitmap.
createBitmap
(480,800,Bitmap.Config.ARGB
weiyirong
·
2013-01-23 10:00
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
luckyjda
·
2013-01-21 22:00
android
android
android
bitmap
bitmap
bitmap
内存溢出
bitmapfactory
大图片
android图像绘制(五)画布保存为指定格式/大小的图片
先贴代码:复制代码代码如下:Bitmapbmp=Bitmap.
createBitmap
(480,800,Config.ARGB_8888);Canvascanvas=newCanvas(bmp);canvas.drawBitmap
·
2013-01-17 10:21
android Bitmap用法总结
androidBitmap用法总结 1、Drawable → Bitmappublicstatic BitmapdrawableToBitmap(Drawabledrawable){Bitmapbitmap=Bitmap.
createBitmap
qq418716640
·
2013-01-16 23:00
wince6.0 兼容位图CreateCompatibleBitmap和非兼容位图CreateDIBSection的区别
兼容位图即DDB,由CreateCompatibleBitmap创建;非兼容位图即DIB,是由LoadImage、SHLoadBitmap、CreateDIBSection、
CreateBitmap
创建
gooogleman
·
2013-01-13 23:00
Android---常用代码片段的分享
,R.drawable.moon);Matrixmatrix=newMatrix();matrix.postRotate(-90);//旋转的角度BitmapresizedBitmap=Bitmap.
createBitmap
witer666
·
2013-01-06 11:46
android
分享
的
android中将两张图片合并为一张图片 .
privateBitmapmergeBitmap(BitmapfirstBitmap,BitmapsecondBitmap){ Bitmapbitmap=Bitmap.
createBitmap
(firstBitmap.getWidth
yangxi_001
·
2013-01-04 18:00
android 修改图片的宽高
BitmapresizeBmp=ThumbnailUtils.extractThumbnail(bmp,100,200);但是因为项目需求需要兼容2.2一下的版本,这时需要另外一种方式,使用Bitmap.
createBitmap
帝都春哥
·
2013-01-04 14:38
android
s
android内存优化之图片优化
尽量不要使用setImageBitmap、setImageResource、BitmapFactory.decodeResource来设置一张大图,因为这些方法在完成decode后,最终都是通过java层的
createBitmap
·
2012-12-28 16:13
上一页
7
8
9
10
11
12
13
14
下一页
按字母分类:
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
其他