安卓:调整位图不失品质(Android: Resizing Bitmaps without losi

2019-09-02 10:06发布

我真的寻遍整个网站,然后再发布。 我的问题是,我不能不失图像质量调整位图(质量实在是太差和像素化)。

我把位图从相机,然后我不得不缩减它,这样我就可以把它上传到服务器更快。

这是做采样功能

public Bitmap resizeBitmap(Bitmap bitmap){
         Canvas canvas = new Canvas();
         Bitmap resizedBitmap = null;
         if (bitmap !=null) {
                int h = bitmap.getHeight();
                int w = bitmap.getWidth();
                int newWidth=0;
                int newHeight=0;

                if(h>w){
                    newWidth = 600;
                    newHeight = 800;
                }

                if(w>h){
                    newWidth = 800;
                    newHeight = 600;
                    }

                float scaleWidth = ((float) newWidth) / w;
                float scaleHeight = ((float) newHeight) / h;



                Matrix matrix = new Matrix();
                // resize the bit map
                matrix.preScale(scaleWidth, scaleHeight);

                resizedBitmap  = Bitmap.createBitmap(bitmap, 0, 0, w, h, matrix, true);



                Paint paint = new Paint();
                paint.setAntiAlias(true);
                paint.setFilterBitmap(true);
                paint.setDither(true);

                canvas.drawBitmap(resizedBitmap, matrix, paint);



            }


        return resizedBitmap;   

这是我是如何从活动结果得到的图像

 protected void onActivityResult(int requestCode, int resultCode,
             Intent data) {
         if(resultCode != RESULT_CANCELED){

         if (requestCode == 0) {
             if (resultCode == RESULT_OK) {


                    getContentResolver().notifyChange(mImageUri, null);
                    ContentResolver cr = this.getContentResolver();

                    try
                    {
                        b = android.provider.MediaStore.Images.Media.getBitmap(cr, mImageUri);
                        Log.d("foto", Integer.toString(b.getWidth()));
                        Log.d("foto", Integer.toString(b.getHeight()));
                        addPhoto.setImageBitmap(b);

                    }
                    catch (Exception e)
                    {
                        Toast.makeText(this, "Failed to load", Toast.LENGTH_SHORT).show();
                        Log.d("TAG", "Failed to load", e);
                    }



             }
         }

我开始以为得到的小画面尺寸的最佳方式是设置摄像头分辨率。 任何人都可以帮忙吗?

Answer 1:

尝试Bitmap.createScaledBitmap 。 它也有一个选项来过滤来源。



Answer 2:

好的缩小算法(如不近邻)由仅2步骤(加上用于输入/输出图像作物确切矩形的计算):

  1. 低档次的使用BitmapFactory.Options :: inSampleSize-> BitmapFactory.decodeResource()尽可能接近到你所需要的分辨率,但没有比它少
  2. 得到精确的分辨率,通过缩减使用Canvas :: drawBitmap一点点()

下面是详细的解释SonyMobile如何解决这个任务: http://developer.sonymobile.com/2011/06/27/how-to-scale-images-for-your-android-application/

这里是SonyMobile规模utils的源代码: http://developer.sonymobile.com/downloads/code-example-module/image-scaling-code-example-for-android/



Answer 3:

尝试以下提到的代码调整位图。

 public Bitmap get_Resized_Bitmap(Bitmap bmp, int newHeight, int newWidth) {
        int width = bmp.getWidth();
        int height = bmp.getHeight();
        float scaleWidth = ((float) newWidth) / width;
        float scaleHeight = ((float) newHeight) / height;
        // CREATE A MATRIX FOR THE MANIPULATION
        Matrix matrix = new Matrix();
        // RESIZE THE BIT MAP
        matrix.postScale(scaleWidth, scaleHeight);

        // "RECREATE" THE NEW BITMAP
        Bitmap newBitmap = Bitmap.createBitmap(bmp, 0, 0, width, height, matrix, false);
        return newBitmap ;
    }

我用这个代码,以缩减我的位图,它的质量,以及..,是可以接受的。

希望这可以帮助。



文章来源: Android: Resizing Bitmaps without losing quality