如何在 WPF 中处理位图?
我需要在我的位图(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在构造函数本身中使用您喜欢的任何格式定义 BitmapSource,然后发送包含您想要的绘图的字节数组。例如:
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:
The bmpSource can then be directly assigned to the Source property of an Image.