I work on a UWP app where the user must be able to take a photo from the camera, and add details by drawing some shapes. I think the simplest way to do this is using the InkToolbar. So I've donwloaded the official sample: SimpleInk
But I don't see how to solve some of my needs:
- add a background image to the InkCanvas: I would like get a BitmapImage containing the original photo and the items drawed by the user
=> is it possible to do this properly? or do I need to superpose the Image and the InkCanvas in the Grid and take a screenshot?
- draw basic shapes like circles or rectangles: all the samples are based on hand drawing with different kinds of pencils
=> is there a way to draw shapes like circles or rectangles through this control? or what is the better way for allowing user to "draw" shapes easily?
I also looked at the Win2D samples Win2D-samples, but I didn't found a similar case.
Thanks in advance for your feedbacks!