我在 Android应用程序中使用此代码将位图转换为纯黑色和白色并且可以正常工作:
public Bitmap ConvertToThreshold(Bitmap anythingBmap)
{
int width = anythingBmap.getWidth();
int height = anythingBmap.getHeight();
int threshold = 120;
for(int x=0;x<width;x++){
for(int y=0;y<height;y++){
int pixel = anythingBmap.getPixel(x, y);
int gray = Color.red(pixel);
if(gray < threshold){
anythingBmap.setPixel(x, y, 0xFF000000);
} else{
anythingBmap.setPixel(x, y, 0xFFFFFFFF);
}
}
}
return anythingBmap;
}
问题如果.getPixel()
非常慢,因此需要很长时间才能处理。有没有更快的方法呢?
谢谢
答案 0 :(得分:0)
使用public void getPixels (int[] pixels, int offset, int stride, int x, int y, int width, int height)
。这将立即返回所有像素。
答案 1 :(得分:0)
更好的方法是为像素处理创建一个int []缓冲区。之后,您只需将数组复制到位图。您需要使用的方法:
public void copyPixelsFromBuffer (Buffer src)
public void copyPixelsToBuffer (Buffer dst)
private static IntBuffer makeBuffer(int[] src, int n) {
IntBuffer dst = IntBuffer.allocate(n);
for (int i = 0; i < n; i++) {
dst.put(src[i]);
}
dst.rewind();
return dst;
}
示例代码:
final int N = mWidth * mHeight;
mBitmap = Bitmap.createBitmap(mWidth, mHeight, Bitmap.Config.ARGB_8888);
int[] data8888 = new int[N];
mBitmap.copyPixelsFromBuffer(makeBuffer(data8888, N));