Android之图片处理(图片合成、图片圆角、图片翻转、图片缩放)
图片合成
/**
* 图片合成
* @param bitmap
* @return
*/
private Bitmap createBitmap( Bitmap src, Bitmap watermark ) {
if( src == null ) {
return null;
}
int w = src.getWidth();
int h = src.getHeig...
原创
2013-03-05 17:56:06 ·
122 阅读 ·
0 评论