C#-WPF-InkCanvas背景-来自图像

时间:2018-10-03 10:51:14

标签: c# wpf memorystream inkcanvas imagebrush

是否可以设置InkCanvasMemoryStream中图像的背景?

我现在正在做的是:

ImageBrush imageBrush = new ImageBrush();
imageBrush.ImageSource = new BitmapImage(new Uri(somePath, UriKind.Relative));
inkCanvas.Background = imageBrush;

实际上,我想将图像设置为InkCanvas背景,然后再保存到相同的路径( somePath )。如果我使用的是同一张图片,则说明该图片已在使用中。

0 个答案:

没有答案