web-dev-qa-db-fra.com

Réduire la taille de Bitmap à un pixel spécifié dans Android

Je souhaite réduire la taille de mon image bitmap à 640 pixels au maximum. Par exemple, j'ai une image bitmap de taille 1200 x 1200 px .. Comment puis-je la réduire à 640px.

29
Nav Ali

Si vous transmettez bitmap width et height, utilisez:

public Bitmap getResizedBitmap(Bitmap image, int bitmapWidth, int bitmapHeight) {
    return Bitmap.createScaledBitmap(image, bitmapWidth, bitmapHeight, true);
}

Si vous souhaitez conserver le même rapport bitmap, mais le réduire à une longueur maximale, utilisez:

public Bitmap getResizedBitmap(Bitmap image, int maxSize) {
        int width = image.getWidth();
        int height = image.getHeight();

        float bitmapRatio = (float) width / (float) height;
        if (bitmapRatio > 1) {
            width = maxSize;
            height = (int) (width / bitmapRatio);
        } else {
            height = maxSize;
            width = (int) (height * bitmapRatio);
        }

        return Bitmap.createScaledBitmap(image, width, height, true);
}
93
Divyang Metalia

Utilisez cette méthode 

 /** getResizedBitmap method is used to Resized the Image according to custom width and height 
  * @param image
  * @param newHeight (new desired height)
  * @param newWidth (new desired Width)
  * @return image (new resized image)
  * */
public static Bitmap getResizedBitmap(Bitmap image, int newHeight, int newWidth) {
    int width = image.getWidth();
    int height = image.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 resizedBitmap = Bitmap.createBitmap(image, 0, 0, width, height,
            matrix, false);
    return resizedBitmap;
}
14
Usman Kurd

ou vous pouvez le faire comme ceci:

Bitmap.createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter);

En passant le filtre = false, vous obtiendrez une image pixellisée en bloc.

Passing filter = true vous donnera des bords plus lisses.

13

Voici un code de travail permettant de réduire la résolution de l'image bitmap (pixels) à la valeur souhaitée ...

import Android.graphics.Bitmap;
import Android.graphics.BitmapFactory;
import Android.os.AsyncTask;
import Android.os.Bundle;
import Android.support.v7.app.AppCompatActivity;
import Android.widget.ImageView;
import Android.widget.Toast;

public class ImageProcessActivity extends AppCompatActivity {


    private static final String TAG = "ImageProcessActivity";
    private static final String IMAGE_PATH = "/sdcard/DCIM/my_image.jpg";

    public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {

        final int height = options.outHeight;
        final int width = options.outWidth;
        int inSampleSize = 1;

        if (height > reqHeight || width > reqWidth) {

            final int halfHeight = height / 2;
            final int halfWidth = width / 2;

            // Calculate the largest inSampleSize value that is a power of 2 and keeps both
            // height and width larger than the requested height and width.
            while ((halfHeight / inSampleSize) >= reqHeight && (halfWidth / inSampleSize) >= reqWidth) {

                inSampleSize *= 2;
            }
        }

        return inSampleSize;
    }

    public static Bitmap decodeSampleDrawableFromFile(String file, int reqWidth, int reqHeight) {

        // First decode with inJustDecodeBounds=true to check dimensions
        final BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(file, options);

        // Calculate inSampleSize
        options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);

        // Decode bitmap with inSampleSize set
        options.inJustDecodeBounds = false;
        return BitmapFactory.decodeFile(file, options);
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_image_process);

        new AsyncTask<Object, Object, Bitmap>() {

            @Override
            protected Bitmap doInBackground(Object... objects) {

                try {

                    return decodeSampleDrawableFromFile(IMAGE_PATH, 640, 640);

                } catch (Exception e) {

                    e.printStackTrace();

                }
                return null;
            }

            @Override
            protected void onPostExecute(Bitmap bitmap) {
                super.onPostExecute(bitmap);

                ((ImageView) findViewById(R.id.img)).setImageBitmap(bitmap);
            }
        }.execute();
    }
}

Pas:

  1. Obtenez le Bitmap.Options (informations sur l'image).

  2. Échantillonnez la taille à la taille d'échantillon souhaitée.

  3. Charger dans Bitmap avec les options données (résolution souhaitée) du fichier image dans un objet bitmap. Mais faites cette opération dans un fil d’arrière-plan.

  4. Chargez Bitmap image dans ImageView sur le thread d'interface utilisateur (onPostExecute()).

0
Rahul Raina