摘要: 有时候会遇到这样的需求,将两个bitmap对象整合并保存为一张图片,代码如下:private Bitmap toConformBitmap(Bitmap background, Bitmap foreground) { if( background == null ) { return null; } int bgWidth = background.getWidth(); int bgHeight = background.getHeight(); //i... 阅读全文
posted @ 2014-03-18 16:33 编程小爬虫 阅读(2127) 评论(0) 推荐(0) 编辑