error with setPixels

2020-02-10 11:25发布

i am trying to edit images. but i am getting errors with setPixels.

        picw = pic.getWidth();
        pich = pic.getHeight();
        picsize = picw*pich;        
        int[] pix = new int [picsize];
        pic.getPixels(pix, 0, picw, 0, 0, picw, pich);  
        pic.setPixels(pix,0,pic.getWidth(),0,0,pic.getWidth(),pic.getHeight());

but i am getting illegal state exception with setPixels

Caused by: java.lang.IllegalStateException
  at android.graphics.Bitmap.setPixels(Bitmap.java:878)
  at com.sandyapps.testapp.testapp.onCreate(testapp.java:66)

4条回答
Fickle 薄情
2楼-- · 2020-02-10 12:03

I think your Bitmap is not mutable (see setPixel()'s documentation).

If so, create a mutable copy of this Bitmap (using Bitmap.copy(Bitmap.Config config, boolean isMutable) as an example) and work on this one.

查看更多
家丑人穷心不美
3楼-- · 2020-02-10 12:07

It's simple, just use the following command to change it to a mutable Bitmap:

myBitmap = myBitmap.copy( Bitmap.Config.ARGB_8888 , true);

Now the Bitmap myBitmap is replaced by the same Bitmap but this time is mutable

You can also choose another way of storing Pixels (ARGB_8888 etc..): https://developer.android.com/reference/android/graphics/Bitmap.Config.html

查看更多
beautiful°
4楼-- · 2020-02-10 12:11

Most probably your pic is immutable. By default, any bitmap created from drawable would be immutable.

If you need to modify an existing bitmap, you should do following:

// Create a bitmap of the same size
Bitmap newBmp = Bitmap.createBitmap(pic.getWidth(), pic.getHeight(), Config.ARGB);
// Create a canvas  for new bitmap
Canvas c = new Canvas(newBmp); 

// Draw your old bitmap on it. 
c.drawBitmap(pic, 0, 0, new Paint());
查看更多
倾城 Initia
5楼-- · 2020-02-10 12:14

I had the same problem. Use to fix it:

BitmapFactory.Options opt = new BitmapFactory.Options();
opt.inMutable = true;
Bitmap bitmap = BitmapFactory.decodeResource( getResources(), R.drawable.my_bitmap, opt );
查看更多
登录 后发表回答