Xamarin
A Microsoft open-source app platform for building Android and iOS apps with .NET and C#.
5,334 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am planning to paint on bitmap with using fingers or marker.
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.