Hi, from the source code it seems that when the DrawView size is changed the image bitmap is resized. I think it's possible to directly draw the original scaled bitmap on Canvas like you did in resizeBitmap
canvas.drawBitmap(bitmap, transformation, paint);
Is there any reason to create another bitmap from the original one for resizing?
Hi, from the source code it seems that when the DrawView size is changed the image bitmap is resized. I think it's possible to directly draw the original scaled bitmap on Canvas like you did in resizeBitmap
canvas.drawBitmap(bitmap, transformation, paint);
Is there any reason to create another bitmap from the original one for resizing?