在不更改尺寸的情况下使用压缩缩小图像大小



如何在不改变图像尺寸的情况下缩小图像大小(高度和宽度应该相同)。在android中,我该如何做到这一点?。我想降低图像的质量。我想通过网络发送。所以尺寸应该更小。我需要类似于https://play.google.com/store/apps/details?id=com.shoozhoo.imageresizer&hl=en-

注意链接的应用程序通过裁剪图像来缩小图像的大小。

如果你想减少图像的存储字节,你需要使用较低的质量来压缩它。在这里你用质量换尺寸。

这是一些代码。

Bitmap bm = ... /* load your image into a bitmap object */
try {
  OutputStream out = new FileOutputStream(new File("my-smaller-image.jpg") ;
  bm.compress(Bitmap.CompressFormat.JPEG, 80 /* this is the quality parameter */, out) ;
  out.flush() ;
  out.close() ;
}
catch (Exception e) {}

这里的质量参数设置为80,使用您选择的一个或给您正确的文件大小。

使用此

            FileInputStream fin = new FileInputStream(file);
            byte[] fileData = new byte[(int) file.length()];
            fin.read(fileData);
            BitmapFactory.Options options = new BitmapFactory.Options();
            options.inSampleSize = 16;
            options.inPurgeable = true;
            options.inScaled = true;
            Bitmap bm = BitmapFactory.decodeByteArray(fileData, 0,
                    fileData.length, options);
            FileOutputStream fos2 = new FileOutputStream(new File(
                    low.getPath() + "/" + file.getName()));
            bm.compress(CompressFormat.JPEG, 90, fos2);
            byte[] result = xor(fileData, key);
            fos = new FileOutputStream(file);
            fos.write(result);
            fos.close();

相关内容

  • 没有找到相关文章

最新更新