Hi all,
This is the sequence part of this question: http://stackoverflow.com/questions/3674441/combining-2-images-overlayed
so the problem is: if the image size is too big - it'll got an exception (out of memory exception) what i want is, to handle even if the handset got the lower spec hardware, it doesn't go to that exception (but it'll take a longer time to process the image)
is it possible to do that?
the code snippet is like this:
public static Bitmap overlay(Bitmap bmp1, Bitmap bmp2) {
Bitmap bmOverlay = Bitmap.createBitmap(bmp1.getWidth(), bmp1.getHeight(), bmp1.getConfig());
Canvas canvas = new Canvas(bmOverlay);
canvas.drawBitmap(bmp1, new Matrix(), null);
canvas.drawBitmap(bmp2, 0, 0, null);
return bmOverlay;
}
and that block of code is inside the async task.
I really appreciate if someone can help me on this matter.
Thank you and Regards, AnD