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 bitmap的放大缩小
Bitmapbitmap){ Matrixmatrix=newMatrix(); matrix.postScale(1.5f,1.5f);//长和宽放大缩小的比例 BitmapresizeBmp=Bitmap.
createBitmap
duanyipeng
·
2012-08-06 17:00
android.graphics.Bitmap.Config
最近学习Api文档,打开Android.graphics.Bitmap类里有一个内部类Bitmap.Config类,在Bitmap类里
createBitmap
(intwidth,intheight,Bitmap.Configconfig
a_large_swan
·
2012-08-06 16:00
api
存储
文档
android将图片转化为指定的宽和高
BitmapresizeBmp=ThumbnailUtils.extractThumbnail(bmp,100,200);但是因为项目需求需要兼容2.2一下的版本,这时需要另外一种方式,使用Bitmap.
createBitmap
walker02
·
2012-08-03 12:00
android
api
服务器
float
Matrix
Android 平铺背景图片
1: 系统api实现Bitmapbitmap=BitmapFactory.decodeResource(getResources(),R.drawable.pic); //bitmap=Bitmap.
createBitmap
sunboy_2050
·
2012-07-30 17:00
android
xml
api
null
Android 平铺背景图片
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.pic); //bitmap = Bitmap.
createBitmap
king_tt
·
2012-07-30 17:00
android
android内存泄漏
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图, 因为这些函数在完成decode后,最终都是通过java层的
createBitmap
1028826685
·
2012-07-25 21:00
android
Android Bitmap转换以及图片的缩放
Bitmap用法总结1、Drawable→BitmappublicstaticBitmapdrawableToBitmap(Drawabledrawable){Bitmapbitmap=Bitmap.
createBitmap
lostinai
·
2012-07-22 20:00
Android学习札记24:收集到的一些关于解决Bitmap OOM内存溢出的方法
尽量不要使用setImageBitmap()、setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些方法在完成decode后,最终都是通过Java层的
createBitmap
L_YQing
·
2012-07-19 15:00
java
android
Android ApiDemos示例解析(71):Graphics->Patterns
本例使用两个位图来填充屏幕:一是外蓝里红的矩形privatestaticBitmapmakeBitmap1(){ Bitmapbm=Bitmap.
createBitmap
(40,40, Bitmap.Config.RGB
isiqi
·
2012-07-17 08:00
graphics
Android ApiDemos示例解析(71):Graphics->Patterns
本例使用两个位图来填充屏幕:一是外蓝里红的矩形privatestaticBitmapmakeBitmap1(){ Bitmapbm=Bitmap.
createBitmap
(40,40, Bitmap.Config.RGB
lyunabc
·
2012-07-17 08:00
graphics
Android ApiDemos示例解析(71):Graphics->Patterns
本例使用两个位图来填充屏幕:一是外蓝里红的矩形privatestaticBitmapmakeBitmap1(){ Bitmapbm=Bitmap.
createBitmap
(40,40, Bitmap.Config.RGB
mapdigit
·
2012-07-17 08:00
c
android
filter
图形
Matrix
shader
Android 图片平铺实现方式
第一种利用系统提供的api实现Bitmapbitmap=BitmapFactory.decodeResource(getResources(),R.drawable.pic); //bitmap=Bitmap.
createBitmap
t12x3456
·
2012-07-12 00:00
框架
xml
android
api
null
BitMap、Drawable、inputStream及byte[] 互转
1、Drawable→BitmappublicstaticBitmapdrawableToBitmap(Drawabledrawable){ Bitmapbitmap=Bitmap .
createBitmap
lostinai
·
2012-07-10 20:00
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
带梦想一7飞
·
2012-07-03 11:00
android.graphics.Bitmap.Config
最近学习Api文档,打开Android.graphics.Bitmap类里有一个内部类Bitmap.Config类,在Bitmap类里
createBitmap
(intwidth,intheight,Bitmap.Configconfig
uhippo
·
2012-06-29 08:00
android webview 截图快照
view.capturePicture(); if(snapShot.getWidth()>0&&snapShot.getHeight()>0){ Bitmapb=Bitmap.
createBitmap
fhy_2008
·
2012-06-26 16:00
c
android
测试
保留每次Canvas绘画后的图,以供下次使用
public void onDraw(Canvas canvas){Bitmap bitmap = Bitmap.
createBitmap
(480, 104, Config.ARGB_8888); Canvas
kalogen
·
2012-06-26 16:00
canvas
解决Android加载图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
263229365
·
2012-06-18 13:00
android
CE6下兼容和非兼容位图的深入分析
兼容位图即DDB,由CreateCompatibleBitmap创建;非兼容位图即DIB,是由LoadImage、SHLoadBitmap、CreateDIBSection、
CreateBitmap
创建
hnhyhongmingjiang
·
2012-06-09 11:00
Android Bitmap用法总结
Drawable → Bitmap public static Bitmap drawableToBitmap(Drawable drawable) { Bitmap bitmap = Bitmap .
createBitmap
YUZHIBOYI
·
2012-06-06 16:00
java
android
Stream
float
Matrix
shader
android Bitmap用法总结
Bitmap用法总结1、Drawable→BitmappublicstaticBitmapdrawableToBitmap(Drawabledrawable){Bitmapbitmap=Bitmap.
createBitmap
jdsjlzx
·
2012-06-05 23:00
android
Stream
float
byte
Matrix
output
android 打水印
*@paramsrc*@paramwatermark*@return*/privateBitmapcreateBitmap(Bitmapsrc,Bitmapwatermark){Stringtag="
createBitmap
liangguo03
·
2012-06-03 21:00
android
String
null
存储
Bitmap与Drawable,byte[]之间的转化
以便于以后随时可用1、drawable---->bitmappublicstaticBitmapdrawableToBitmap(Drawabledrawable){ Bitmapbitmap=Bitmap .
createBitmap
loongggdroid
·
2012-06-02 22:00
基于Android opengles的魔方开发总结(二)
生成数字图片代码为:int imgSize = 64;int fontSize = 20;Bitmap bitmap = Bitmap.
createBitmap
(im
tomatozq
·
2012-05-30 20:00
android
filter
手机
float
电话
textures
android图片的内存优化
尽量不要使用setImageBitmap、setImageResource、BitmapFactory.decodeResource来设置一张大图,因为这些方法在完成decode后,最终都是通过java层的
createBitmap
a1405
·
2012-05-29 17:12
图片
资源
source
分辨率
最大的
android在处理一写图片资源
drawableToBitmap(Drawable drawable) { Bitmap bitmap = Bitmap .
createBitmap
lishengjie
·
2012-05-22 23:40
图片
Android 怎么把imageview 转为Bitmap
在新增界面中我用的是imageview控件,点击弹出一个对话框,列出可供选择的图像,单击选择,但是提交后图像显示不正确,只显示一个黑框,我的代码是这样的Java代码 Bitmapimage=Bitmap.
createBitmap
jdsjlzx
·
2012-05-17 23:00
java
android
image
sqlite
移动游戏背景
作者:陈文源 在android系统上开发游戏的时候,需要处理主角在移动过程中背景的移动,借助于Bitmap的
createBitmap
方法可以挖取源位图的其中一块,这样可以在程序中通过定时器控制不断地挖取源位图不同位置的块
pku_android
·
2012-05-17 00:00
android
timer
null
Class
移动游戏
Matrix
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
yn49782026
·
2012-05-07 14:00
java
游戏
android
优化
虚拟机
android显示大图片的一些技巧
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图, 因为这些函数在完成decode后,最终都是通过java层的
createBitmap
hechel
·
2012-05-05 10:00
android
大图处理
Bitmap.
createBitmap
函数有6个重载方法
publicstaticBitmap
createBitmap
(Bitmap src)从原位图src复制出一个新的位图,和原始位图相同publicstaticBitmap
createBitmap
(
gg137608987
·
2012-05-03 13:00
位图旋转
在Android中图形的旋转和变化提供了方便的矩阵Maxtrix类,Maxtrix类的setRotate方法接受图形的变换角度和缩放,最终Bitmap类的
createBitmap
方法中其中的重载函数,可以接受
1028826685
·
2012-04-29 17:00
android
bitmap
android 图片转 圆形和圆角矩形
nbsp; int h = getHeight(); Bitmap bitmap = Bitmap.
createBitmap
liuqun_567
·
2012-04-27 14:00
图片处理
使用Matrix对bitmap的旋转和镜像水平垂直翻转
Bitmapconvert(Bitmapa,intwidth,intheight){intw=a.getWidth();inth=a.getHeight();Bitmapnewb=Bitmap.
createBitmap
junjieking
·
2012-04-27 10:00
null
Matrix
让imageview显示的图片实现圆角特效
nbsp; Bitmap output = Bitmap.
createBitmap
hautxsh
·
2012-04-23 10:00
android.graphics.Bitmap.Config
最近学习Api文档,打开Android.graphics.Bitmap类里有一个内部类Bitmap.Config类,在Bitmap类里
createBitmap
(intwidth,intheight,Bitmap.Configconfig
caikezhan
·
2012-04-22 14:00
android Bitmap的截取和缩放--转
有一个任务显示一张图片的中间地方的图片1、什么也不用设只要固定了imageView的宽和高就会自动缩放来填充这个imageview2、截取一张大图我要截取其中的部分Java代码Bitmap.
createBitmap
aceezaj
·
2012-04-20 11:42
android
android Bitmap的截取和缩放--转
阅读更多有一个任务显示一张图片的中间地方的图片1、什么也不用设只要固定了imageView的宽和高就会自动缩放来填充这个imageview2、截取一张大图我要截取其中的部分Java代码Bitmap.
createBitmap
alp1014
·
2012-04-20 11:00
bitmap
缩放
截取
android Bitmap的截取和缩放--转
、 什么也不用设 只要固定了imageView的宽和高 就会自动缩放来填充这个imageview 2、截取 一张大图 我要截取其中的部分 Java代码 Bitmap.
createBitmap
alp1014
·
2012-04-20 11:00
bitmap
缩放
截取
android Bitmap的截取和缩放--转
阅读更多有一个任务显示一张图片的中间地方的图片1、什么也不用设只要固定了imageView的宽和高就会自动缩放来填充这个imageview2、截取一张大图我要截取其中的部分Java代码Bitmap.
createBitmap
alp1014
·
2012-04-20 11:00
bitmap
缩放
截取
ANDROID截图代码
方法一:Viewview=getWindow().getDecorView();Bitmapbmp=Bitmap.
createBitmap
(480,800,Bitmap.Config.ARGB_8888
gzh0222
·
2012-04-12 08:00
android
File
null
dialog
ANDROID截图代码
方法一: View view= getWindow().getDecorView(); Bitmap bmp = Bitmap.
createBitmap
(480, 800, Bitmap.Config.ARGB
xitong
·
2012-04-12 08:00
android
ANDROID截图代码
方法一: View view= getWindow().getDecorView(); Bitmap bmp = Bitmap.
createBitmap
(480, 800, Bitmap.Config.ARGB
xitong
·
2012-04-12 08:00
android
android 绘画网格图片
public static Bitmap drawBackground(int cellSize, int height, int widht) { Bitmap bitmap = Bitmap.
createBitmap
·
2012-04-06 13:00
android
使用Bitmap画一张自定义文字的图片
intw=480,h=800; Stringtitle="NNNNNNNNNNNNNNNN"; Bitmapbm=Bitmap.
createBitmap
(w,h,Config.ARGB_8888); Canvascanvas
twoicewoo
·
2012-04-02 10:00
String
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图,因为这些函数在完成decode后,最终都是通过java层的
createBitmap
akon_vm
·
2012-03-31 22:00
android在处理一写图片资源的时候,会进行一些类型的转换,现在有空整理一下
drawableToBitmap(Drawable drawable) { Bitmap bitmap = Bitmap .
createBitmap
hupuxiang
·
2012-03-27 15:00
java
android
null
byte
resources
Android有效解决加载大图片时内存溢出的问题
尽量不要使用setImageBitmap或setImageResource或BitmapFactory.decodeResource来设置一张大图, 因为这些函数在完成decode后,最终都是通过java层的
createBitmap
wen742538485
·
2012-03-26 17:00
android
Drawable和Bitmap互相转换
intwidth=drawable.getIntrinsicHeight(); intheight=drawable.getIntrinsicHeight(); Bitmapbitmap=Bitmap.
createBitmap
zhouyuanjing
·
2012-03-16 13:00
Drawable、Bitmap、byte[]之间的转换
public static Bitmap drawableToBitmap(Drawable drawable) { Bitmap bitmap = Bitmap .
createBitmap
liu86th
·
2012-03-15 08:00
drawable
上一页
9
10
11
12
13
14
15
16
下一页
按字母分类:
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
其他