我想知道是否有人知道强制Android使用其功能创建索引颜色PNG文件的compress
方法。
例如:
InputStream FIS = ...
BitmapFactory.Options opt = new BitmapFactory.Options();
opt.inPreferredConfig = Bitmap.Config.ARGB_8888;
opt.inScaled = false;
Bitmap img = BitmapFactory.decodeStream(FIS, null, opt);
// Resize
float scale = 0.8f;
Matrix matrix = new Matrix();
matrix.postScale(scale, scale);
Bitmap scaledBitmap = Bitmap.createBitmap(img, 0, 0, img.getWidth(), img.getHeight(), matrix, true);
img = null; // Free
// Write
File sdCard = Environment.getExternalStorageDirectory();
File dir = new File(sdCard.getAbsolutePath() + "/scaled/");
FileOutputStream FOS = new FileOutputStream(new File(dir, "out.png"));
scaledBitmap.compress(Bitmap.CompressFormat.PNG, 100, FOS);
scaledBitmap = null; // Free
此代码打开一个 PNG 文件,将其大小调整为 80% 并将其保存到 SD 卡。生成的图像确实缩放到 80%,但生成的文件大小几乎是原始大小的 5 倍。
-rw-rw-r-- 1 个用户用户 55878 Sep 10 19:00 8500_001.2B.png <- 输入 -rwxr--r-- 1 个用户 user 245933 Sep 10 21:49 out.png <- 输出
这是因为原始文件使用的是索引颜色(PseudoClass),而不是真彩色(DirectClass)。[1]
$ 识别 8500_001.2B.png 8500_001.2B.png PNG 1712x2200 1712x2200+0+0 8 位伪类 2c 55.9KB 0.000u 0:00.000 $识别出.png out.png PNG 1370x1760 1370x1760+0+0 8 位 DirectClass 246KB 0.000u 0:00.000
ImageMagick 足够聪明,可以使用索引颜色和双色颜色图对原始双色图像进行编码。在 Android 中打开、缩放和重新编码后的文件不会这样做,而是对每个像素使用真彩色,从而导致文件大小更大。
问题
- 有谁知道是否有办法强制标准 Android 库使用颜色图压缩文件?
- 如果没有,有谁知道是否有任何纯 Java 实现可以完成这 3 个任务(解码、缩放、编码)?
提前致谢。
[1] PNG 规范