I'm drawing freehand (Less Note app) on a canvas which is initialized to a panel. After drawing, it's easy to save the drawing to the photo gallery using:
However, there is an underlying imageview with various paper types (lined, graph, parchment). I would like to somehow merge the canvas onto the paper type before saving ... so it looks like I drew on the paper (which is just a png).
Any thoughts?
Thanks in advance!
B4X:
Dim svBmp As Bitmap
svBmp = cvsDrawPad.CreateBitmap
Phone.AddImageToAlbum(svBmp)
tm.ToastMessageShow("Current image saved to Photo Album", False)
Any thoughts?
Thanks in advance!