5,381 questions
Hello,
Welcome to Microsoft Q&A!
1 . Firstly draw bitmap on the canvas , refer to here .
canvas.DrawBitmap(webBitmap, x, y);
2 . Then draw the path on canvas using Finger painting ,refer to here .
foreach (SKPath path in inProgressPaths.Values)
{
canvas.DrawPath(path, paint);
}
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.