0

我正在通过 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 像素值,请帮助我...

4

2 回答 2

3

JPEG 是一种通常基于有损压缩的图像格式。这意味着一些对人眼不重要的信息被丢弃以进一步缩小文件大小。尝试将图像保存为 PNG(无损格式)。

于 2012-04-19T18:53:38.113 回答
0

使用时要小心

Bitmap bi = BitmapFactory.decodeStream(fis);
bi = bi.copy(Bitmap.Config.ARGB_8888, true);

在您获得第bi一个信息时,您可能已经丢失了很多信息,而是尝试使用BitmapFactory.Optionsto force 8888(这也是默认设置):

BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
options.inDither = false;
Bitmap bi = BitmapFactory.decodeStream(fis, options);

如果你留下来,copy你应该仍然recycle()是你扔掉的那个。

于 2016-04-07T22:44:47.817 回答