有没有一种方法可以旋转字节数组而不将其解码为Bitmap?

目前在jpeg PictureCallback中,我只是将字节数组直接写入文件。但是图片是旋转的。我想旋转它们而不解码为位图,希望这样可以节省我的内存。

    BitmapFactory.Options o = new BitmapFactory.Options();
    o.inJustDecodeBounds = true;
    BitmapFactory.decodeByteArray(data, 0, data.length, o);

    int orientation;
    if (o.outHeight < o.outWidth) {
        orientation = 90;
    } else {
        orientation = 0;
    }

    File photo = new File(tmp, "demo.jpeg");

    FileOutputStream fos;
    BufferedOutputStream bos = null;
    try {
        fos = new FileOutputStream(photo);
        bos = new BufferedOutputStream(fos);
        bos.write(data);
        bos.flush();
    } catch (IOException e) {
        Log.e(TAG, "Failed to save photo", e);
    } finally {
        IOUtils.closeQuietly(bos);
    }

最佳答案

我认为没有这种可能性。字节顺序取决于图片编码(png,jpeg)。因此,您不得不解码图像以对其进行处理。

10-08 03:16