如何在 WPF 中处理位图?

发布于 2024-09-04 21:52:53 字数 89 浏览 4 评论 0原文

我需要在我的位图(Bgra32)上绘制基本形状。但是,RenderTargetBitmap 适用于 Pbgra32 位图。在 WPF 中处理位图最优雅的方式是什么?

I need to draw a basic shapes on my bitmap (Bgra32). However, RenderTargetBitmap works with Pbgra32 bitmaps. What is the most elegant way of dealing with bitmaps in WPF?

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

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

发布评论

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

评论(1

戏蝶舞 2024-09-11 21:52:53

您可以在构造函数本身中使用您喜欢的任何格式定义 BitmapSource,然后发送包含您想要的绘图的字节数组。例如:

 byte[] pixelData = DrawYourPicture();

 int stride = width * PixelFormats.Pbgra32.BitsPerPixel/8;
 BitmapSource bmpSource = BitmapSource.Create(width, height, 96, 96,
                PixelFormats.Pbgra32, null, pixelData, stride);

bmpSource 可以直接分配给图像的 Source 属性。

You can define a BitmapSource with any format you like in the constructor itself and then send a byte array with the drawing you want. For example:

 byte[] pixelData = DrawYourPicture();

 int stride = width * PixelFormats.Pbgra32.BitsPerPixel/8;
 BitmapSource bmpSource = BitmapSource.Create(width, height, 96, 96,
                PixelFormats.Pbgra32, null, pixelData, stride);

The bmpSource can then be directly assigned to the Source property of an Image.

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