Preguntas etiquetadas con crop

150
Android Crop Center de Bitmap

Tengo mapas de bits que son cuadrados o rectángulos. Tomo el lado más corto y hago algo como esto: int value = 0; if (bitmap.getHeight() <= bitmap.getWidth()) { value = bitmap.getHeight(); } else { value = bitmap.getWidth(); } Bitmap finalBitmap = null; finalBitmap =