Zahid H
Zahid H

Reputation: 245

Canvas Drawing using an image as place holder

I want to have a drawing canvas within my application which will display letter to free draw for practice. Something like the following:

enter image description here

OR

enter image description here

This is the first time I will be implementing this method so a few questions.

I saw some tutorials but wasn't too clear on how to implement it within app.

Upvotes: 0

Views: 176

Answers (1)

MattMatt
MattMatt

Reputation: 905

I found a solution for you. Having more than 1 Canvas is not the answer (Although may work, I'm still new), but instead draw a seperate Bitmap on top of the first Bitmap (background).

Try this out for size: Overlying Bitmap

You should then be able to edit the overlaying Bitmap without affecting the original Bitmap.

Cheers!

Upvotes: 1

Related Questions