How can i merge two bitmap one over another at selected point on the first image in android?
How can i merge two different images as one. Also i need to merge the second image at a particular point on the first image. Is it posible in android??
Solution
This should work:
Create a canvas object based from the bitmap.
Draw another bitmap to that canvas object (methods will allow you
specifically set coordinates).
Original Bitmap object will have new data saved to it, since the
canvas writes to it.