以编程方式绘制并显示/复制/保存图像

发布于 2024-12-02 18:45:49 字数 310 浏览 0 评论 0原文

我想在 Visual Basic .NET WPF 应用程序中逐像素绘制图像(如条形码),并...

  1. 在我的 UI 中显示图像,
  2. 将其复制到剪贴板,
  3. 将其另存为 .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 …

  1. show the image in my UI
  2. copy it to the clipboard
  3. 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 技术交流群。

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

发布评论

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

评论(1

完美的未来在梦里 2024-12-09 18:45:49

我认为 WriteableBitmap< /a> 可能会有所帮助,它已经是一个 ImageSource 了。查看文档以获取一些使用示例。我已经很长时间没有使用它了,所以我无法帮助你,可能在这个网站上搜索也可能会找到一些有用的信息。

由于 WriteableBitmapBitmapSource,因此您可以仅使用 Clipboard.SetImage 复制它。

要保存图像,通常可以使用子类 ob BitmapEncoder(另请参阅文档了解用法;您可能想要使用 BmpBitmapEncoder)。

I think WriteableBitmap might help, it already is an ImageSource. 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 a BitmapSource you can just use Clipboard.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 the BmpBitmapEncoder).

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