摘要: 1、原图片去色int[] getGray(int[] pixels, int width, int height) { int gray[] = new int[width * height]; for (int i = 0; i < width - 1; i++) { for (int j = 0; j < height - 1; j++) { int index = width * j + i; int rgba = pixels[inde... 阅读全文
posted @ 2012-08-28 17:54 lipeil 阅读(2494) 评论(0) 推荐(0)