我正在通过 Android 创建一个应用程序,我需要在其中操作我的 JPG 文件。我没有获得太多 JPG 格式的标题信息,因此我将其转换为位图,操作位图中的像素值,然后再次将其转换回 JPG。
这里我面临的问题是 - 在仅处理位图的一些像素并将其转换回 JPG 之后,我没有得到我之前得到的相同像素集(对于那些我没有处理的像素)。我在新图像中得到与原始图像相同的图像。但是当我检查新的图像像素值进行解码时,未触及的像素是不同的......
File imagefile = new File(filepath);
FileInputStream fis = new FileInputStream(imagefile);
Bitmap bi = BitmapFactory.decodeStream(fis);
int intArray[];
bi=bi.copy(Bitmap.Config.ARGB_8888,true);
intArray = new int[bi.getWidth()*bi.getHeight()];
bi.getPixels(intArray, 0, bi.getWidth(), 0, 0, bi.getWidth(), bi.getHeight());
int newArray[] = encodeImage(msgbytes,intArray,mbytes); // method where i am manipulating my pixel values
// converting the bitmap data back to JPG file
bi = Bitmap.createBitmap(newArray, bi.getWidth(), bi.getHeight(), Bitmap.Config.ARGB_8888);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bi.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] data = baos.toByteArray();
Bitmap bitmapimage = BitmapFactory.decodeByteArray(data, 0, data.length);
String filepath = "/sdcard/image/new2.jpg";
File imagefile = new File(filepath);
FileOutputStream fos = new FileOutputStream(imagefile);
bitmapimage.compress(CompressFormat.JPEG, 100, fos);
如果我在某处出错或是否应该使用其他方法来操作 JPG 像素值,请帮助我...