如何将图片保存在wpf中的图像控件上?
我有一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
取决于
Image.Source
的类型,假设您有一个BitmapSource
(如文章中所示),它应该是这样的:Depends on the type of the
Image.Source
, assuming that you have aBitmapSource
as in the article it should be along those lines:如果它是 System.Drawing.Image 对象,那么就调用保存?
If it's a System.Drawing.Image object then just call Save?