1 / 4
文档名称:

Android --- 图片的特效处理.pdf

格式:pdf   页数:4
下载后只包含 1 个 PDF 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

Android --- 图片的特效处理.pdf

上传人:翩仙妙玉 2012/9/15 文件大小:0 KB

下载得到文件列表

Android --- 图片的特效处理.pdf

文档介绍

文档介绍:IT-Homer 专栏
成功是优点的发挥,失败是缺点的积累! 不为失败找理由,只为成功找
方法……
Android --- 图片的特效处理
分类: Android 2011-08-23 22:25 1160人阅读评论(0) 收藏举报
Android --- 图片处理的方法
转换-  drawable To  bitmap
缩放-  Zoom
圆角-  Round Corner
倒影-  Reflected
bitmapPrcess  code:
.;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
public class bitmapProcess {
// zoom
public static Bitmap zoomBitmap(Bitmap bitmap, int w, int h){
int width = ();
int height = ();
Matrix matrix = new Matrix();
float scaleWidth = w/(float)width;
float scaleHeight = h/(float)height;
(scaleWidth, scaleHeight);
Bitmap bitmap2 = (bitmap, 0, 0, width, height, matrix, true);
return bitmap2;
}
// drawable to bitmap
public static Bitmap drawable2Bitmap(Drawable drawable){
int width = ();
int height = ();
1
Bitmap bitmap = (width, height,