WEB开发网
开发学院手机开发Android 开发 Android图片处理的的一些方法 阅读

Android图片处理的的一些方法

 2010-08-11 11:07:00 来源:WEB开发网   
核心提示:}sourceImg = Bitmap.createBitmap(argb, sourceImg.getWidth(), sourceImg.getHeight(), Config.ARGB_8888);return sourceImg;}6.图片翻转Resources res = this.getContext().

}

sourceImg = Bitmap.createBitmap(argb, sourceImg.getWidth(), sourceImg.getHeight(), Config.ARGB_8888);

return sourceImg;

}

6.图片翻转

Resources res = this.getContext().getResources();

img = BitmapFactory.decodeResource(res, R.drawable.slogo);

Matrix matrix = new Matrix();

matrix.postRotate(90); /*翻转90度*/

int width = img.getWidth();

int height = img.getHeight();

r_img = Bitmap.createBitmap(img, 0, 0, width, height, matrix, true);

上一页  1 2 3 

Tags:Android 图片 处理

编辑录入:coldstar [复制链接] [打 印]
赞助商链接