I'd like to be able to use: android.graphics.Bitmap.createScaledBitmap
to scale a bitmap using new dimensions. It would be much easier than trying to do it myself and I'd likely get better results.
See Bitmap | Android Developers
Widget
to scale a bitmap using new dimensions. It would be much easier than trying to do it myself and I'd likely get better results.
B4X:
createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter)
Creates a new bitmap, scaled from an existing bitmap.
See Bitmap | Android Developers
Widget