我试图实现一些图像过滤器,我使用这个代码
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
imageView=(ImageView) findViewById(R.id.imgView);
bgr = BitmapFactory.decodeResource(getResources(), R.drawable.test02);
int A, R, G, B;
int pixel;
// scan through all pixels
for(int x = 0; x < bgr.getWidth(); ++x)
{
for(int y = 0; y < bgr.getHeight(); ++y)
{
// get pixel color
pixel = bgr.getPixel(x, y);
A = Color.alpha(pixel);
R = Color.red(pixel);
G = Color.green(pixel);
B = Color.blue(pixel);
// increase/decrease each channel
R += value;
if(R > 255) { R = 255; }
else if(R < 0) { R = 0; }
G += value;
if(G > 255) { G = 255; }
else if(G < 0) { G = 0; }
B += value;
if(B > 255) { B = 255; }
else if(B < 0) { B = 0; }
// apply new pixel color to output bitmap
bgr.setPixel(x, y, Color.argb(A, R, G, B));
}
System.out.println("x");
}
imageView.setImageBitmap(bgr);
}
问题是这是减慢是任何其他方式来做到这一点,或者让它更快..