testButton.setOnClickListener(new Button.OnClickListener(){
@Override
public void onClick(View v)
{
Bitmap mutableBitmap = bitmap.copy(Bitmap.Config.ARGB_8888, true);for (int i = 0; i < mutableBitmap.getWidth(); i++)
{
for (int j = 0; j < mutableBitmap.getHeight(); j++)
{
int pixel = mutableBitmap.getPixel(i, j);
// get red color value
int red = Color.red(pixel);
int color = Color.argb(0xFF, red, 0, 0);
mutableBitmap.setPixel(i, j, color);
imageView.setImageBitmap(mutableBitmap);
}
}
}
});
我正在尝试仅使用红色值更改像素颜色。因此,我从给定像素中获取红色值,然后尝试仅使用该红色值替换相同的像素。程序运行成功但是当我点击按钮时它会崩溃。任何人都可以告诉我我做错了什么
LOGCAT错误
12-03 15:16:57.228: E/AndroidRuntime(5103): FATAL EXCEPTION: main
12-03 15:16:57.228: E/AndroidRuntime(5103): java.lang.IllegalStateException
12-03 15:16:57.228: E/AndroidRuntime(5103): at android.graphics.Bitmap.setPixel(Bitmap.java:1002)
12-03 15:16:57.228: E/AndroidRuntime(5103): at com.example.imaging.AndroidCamera$7.onClick(AndroidCamera.java:216)
12-03 15:16:57.228: E/AndroidRuntime(5103): at android.view.View.performClick(View.java:3511)
12-03 15:16:57.228: E/AndroidRuntime(5103): at android.view.View$PerformClick.run(View.java:14109)
12-03 15:16:57.228: E/AndroidRuntime(5103): at android.os.Handler.handleCallback(Handler.java:605)
12-03 15:16:57.228: E/AndroidRuntime(5103): at android.os.Handler.dispatchMessage(Handler.java:92)
12-03 15:16:57.228: E/AndroidRuntime(5103): at android.os.Looper.loop(Looper.java:137)
12-03 15:16:57.228: E/AndroidRuntime(5103): at android.app.ActivityThread.main(ActivityThread.java:4424)
12-03 15:16:57.228: E/AndroidRuntime(5103): at java.lang.reflect.Method.invokeNative(Native Method
12-03 15:16:57.228: E/AndroidRuntime(5103): at java.lang.reflect.Method.invoke(Method.java:511)
12-03 15:16:57.228: E/AndroidRuntime(5103): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
12-03 15:16:57.228: E/AndroidRuntime(5103): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
12-03 15:16:57.228: E/AndroidRuntime(5103): at dalvik.system.NativeStart.main(Native Method)
答案 0 :(得分:8)
您正在尝试修改不可变位图的像素。您无法修改不可变位图的像素。如果你尝试它将抛出IllegalStateException。
使用以下方法从资源中获取Mutable Bitmap
public static Bitmap getMutableBitmap(Resources resources,int resId) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inMutable = true;
return BitmapFactory.decodeResource(resources, resId, options);
}
或使用
Bitmap mutableBitmap = bitmap.copy(Bitmap.Config.ARGB_8888, true);
从不可变位图获取可变位图
答案 1 :(得分:1)
阅读documentation,如果您尝试在不可变位图中设置Pixel,则会看到此方法可能会抛出IllegalStateException。
public void setPixel (int x, int y, int color)
Added in API level 1
Write the specified Color into the bitmap (assuming it is mutable) at the x,y coordinate. The color must be a non-premultiplied ARGB value.
Parameters
x The x coordinate of the pixel to replace (0...width-1)
y The y coordinate of the pixel to replace (0...height-1)
color The ARGB color to write into the bitmap
Throws
IllegalStateException if the bitmap is not mutable
IllegalArgumentException if x, y are outside of the bitmap's bounds.
如果您正在使用其中一种createBitmap
方法,那么大多数方法都会返回不可变位图,因此要么使用不同的创建方法,要么获取您获得的位图的可变副本。
答案 2 :(得分:0)
检查this以创建不可变位图...
testButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Config config = null;
int width = bitmap.getWidth();
int height = bitmap.getHeight();
if (bitmap.getConfig() == null) {
config = Config.ARGB_8888;
} else {
config = bitmap.getConfig();
}
int pixel;
// Here you ll get the immutable Bitmap
Bitmap copyBitmap = bitmap.copy(config, true);
// scan through all pixels
for (int x = 0; x < width; ++x) {
for (int y = 0; y < height; ++y) {
// get pixel color
pixel = bitmap.getPixel(x, y);
if (x == 400 && y == 200) {
copyBitmap.setPixel(x, y,
Color.argb(0xFF, Color.red(pixel), 0, 0));
} else {
copyBitmap.setPixel(x, y, pixel);
}
}
}
imageView.setImageBitmap(copyBitmap);
}
});