以编程方式绘制并显示/复制/保存图像
我想在 Visual Basic .NET WPF 应用程序中逐像素绘制图像(如条形码),并...
- 在我的 UI 中显示图像,
- 将其复制到剪贴板,
- 将其另存为 .BMP 文件。
以后还应该可以添加类似画图的编辑功能。
什么是好的方法?
System.Drawing.Bitmap
在内部工作,但我显示它的唯一方法是将其转换为 ImageSource
并在 Image
内显示它控制。还有更好的办法吗?
I'd like to draw an image (like a bar code) pixel-by-pixel in a Visual Basic .NET WPF Application and …
- show the image in my UI
- copy it to the clipboard
- save it as a .BMP-File.
It should also be possible to add Paint-like editing features later.
What is a good approach?
System.Drawing.Bitmap
works internally, but the only way I could show it is to convert it to an ImageSource
and show it inside an Image
control. Is there any better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为
WriteableBitmap
< /a> 可能会有所帮助,它已经是一个ImageSource
了。查看文档以获取一些使用示例。我已经很长时间没有使用它了,所以我无法帮助你,可能在这个网站上搜索也可能会找到一些有用的信息。由于
WriteableBitmap
是BitmapSource
,因此您可以仅使用Clipboard.SetImage
复制它。要保存图像,通常可以使用子类 ob
BitmapEncoder
(另请参阅文档了解用法;您可能想要使用BmpBitmapEncoder
)。I think
WriteableBitmap
might help, it already is anImageSource
. Check out the documentation for some usage examples. I have not used this for a long time so i cannot help you with it, possibly searches on this site may turn up some useful info as well.As
WriteableBitmap
is aBitmapSource
you can just useClipboard.SetImage
to copy it.To save images you can in general use a subclass ob
BitmapEncoder
(also see doc for usage; you probably want to use theBmpBitmapEncoder
).