我正在处理位图中的像素值。在 Android 程序的特定运行中 Red Green 和 Blue 的源值是 45 13 0 处理值后,值是 Red Green Blue 44 9 7
现在我从这些像素值创建一个新的位图并使用
Bitmap.compress(Bitmap.compress.PNG,100,fout);
并使用
bmp.getPixel(0,0,value);
Red Green 和 Blue 的新值是 49 16 0 这既不是操纵值也不是原始值,我的代码可能有什么问题?