如何将图片保存在wpf中的图像控件上?

发布于 2024-11-06 02:45:41 字数 160 浏览 1 评论 0原文

我有一个简单的 wpf 应用程序 WIA .我的应用程序有一个图像控件... 我想知道如何将扫描的图片保存到硬盘上?

I have a simple wpf application WIA.My app has an image control...
I was wondering how can I save the scanned picture on my hard disk?

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

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

发布评论

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

评论(2

坠似风落 2024-11-13 02:45:41

取决于 Image.Source 的类型,假设您有一个 BitmapSource (如文章中所示),它应该是这样的:

var encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create((BitmapSource)image.Source));
using (FileStream stream = new FileStream(filePath, FileMode.Create))
    encoder.Save(stream);

Depends on the type of the Image.Source, assuming that you have a BitmapSource as in the article it should be along those lines:

var encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create((BitmapSource)image.Source));
using (FileStream stream = new FileStream(filePath, FileMode.Create))
    encoder.Save(stream);
他夏了夏天 2024-11-13 02:45:41

如果它是 System.Drawing.Image 对象,那么就调用保存

If it's a System.Drawing.Image object then just call Save?

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