摘要:http://www.eoeandroid.com/thread-272453-1-1.html
阅读全文
04 2013 档案
摘要:http://www.eoeandroid.com/thread-272453-1-1.html
阅读全文
摘要:/** * 将彩色图转换为灰度图 * @param img 位图 * @return 返回转换好的位图 */ public Bitmap convertGreyImg(Bitmap img) { int width = img.getWidth(); //获取位图的宽 int height = img.getHeight(); //获取位图的高 int []pixels = new int[width * height]; //通过位图的大小...
阅读全文
|