J'ai une très grande image bitmap. Ma source
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(new FileInputStream(f), null, o);
// The new size we want to scale to
final int REQUIRED_WIDTH = 1000;
final int REQUIRED_HIGHT = 500;
// Find the correct scale value. It should be the power of 2.
int scale = 1;
while (o.outWidth / scale / 2 >= REQUIRED_WIDTH
&& o.outHeight / scale / 2 >= REQUIRED_HIGHT)
scale *= 2;
// Decode with inSampleSize
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize = scale;
return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
Je veux redimensionner l'image correctement, j'ai besoin de redimensionner l'image à maximum taille disponible
par exemple
J'ai téléchargé une image de 4000x4000 px et mon téléphone supporte une taille de 2000x1500 px. J'ai besoin d'une aide supplémentaire comment la taille a supporté mon téléphone ? Ensuite, je redimensionne l'image en 2000x1500 (par exemple).