从Image控件WPF获取图片数据

发布于 2024-12-11 07:59:34 字数 119 浏览 0 评论 0原文

我是 WPF 新手。我正在为 Windows 窗体应用程序编程,并且有具有 Image 属性的 Picture Box。但在 WPF 中,有 Image 而不是 Picture Box。如何获得它的价值?我的意思是图像数据。

I'm new to WPF. I was programming for Windows Forms Applications, and there was Picture Box with Image property. But in WPF there is Image instead of Picture Box. How to get it's value? I mean the image data.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花海 2024-12-18 07:59:34

您可以使用 Image.Source 财产。

您会在互联网上找到很多关于它的示例。例如下面的代码设置图像源,您可以类似地获取图像

Image myImage3 = new Image();
BitmapImage bi3 = new BitmapImage();
bi3.BeginInit();
bi3.UriSource = new Uri("smiley_stackpanel.PNG", UriKind.Relative);
bi3.EndInit();
myImage3.Stretch = Stretch.Fill;
myImage3.Source = bi3;

  //get the source
  BitmapImage imgSource = myImage3.Source;

you can do that by using Image.Source property.

You will find a lot of samples on internet about it. For example code below sets image source, you can get the image similarly

Image myImage3 = new Image();
BitmapImage bi3 = new BitmapImage();
bi3.BeginInit();
bi3.UriSource = new Uri("smiley_stackpanel.PNG", UriKind.Relative);
bi3.EndInit();
myImage3.Stretch = Stretch.Fill;
myImage3.Source = bi3;

  //get the source
  BitmapImage imgSource = myImage3.Source;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文