mutable : 易變的,不定的
mutable 作用 : 控制bitmap的setPixel方法能否使用,也就是外界能否修改bitmap的像素。
Bitmap.createBitmap(mWidth, mHeight, Config.ARGB_8888) 為 mutable 為true
BimapFactory.decodeResource() 得到的mutable 為false, 要想其為true
一般會
BimtapFactory.decodeResource().copy(configu_argb_8888, true);