Als «crop» getaggte Fragen

149
Android Crop Center von Bitmap

Ich habe Bitmaps, die Quadrate oder Rechtecke sind. Ich nehme die kürzeste Seite und mache so etwas: int value = 0; if (bitmap.getHeight() <= bitmap.getWidth()) { value = bitmap.getHeight(); } else { value = bitmap.getWidth(); } Bitmap finalBitmap = null; finalBitmap =