This question already has answers here:
BitmapSource from file
(3个答案)
5年前关闭。
假设我有一个图像路径
我知道我会使用
但这需要
(3个答案)
5年前关闭。
假设我有一个图像路径
C:\MyImages\MyImage.jpg
,如何使用C#将其保存到剪贴板上。我知道我会使用
System.Windows.Clipboard.SetImage();
类但这需要
BitmapSource
作为参数。我将如何从给定路径中将BitmapSource
对象馈入此方法? 最佳答案
BitmapSource bitmapSource = new BitmapImage(new Uri("C:\\MyImages\\MyImage.jpg"));
System.Windows.Clipboard.SetImage(bitmapSource);
关于c# - 如何仅在知道图像路径的情况下将图像保存到剪贴板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25246213/
10-09 09:44