WPF:System.Windows.Interop.InteropBitmap 到 System.Drawing.Bitmap
有没有办法将 System.Windows.Interop.InteropBitmap 转换为 System.Drawing.Bitmap?
谢谢
Is there a way to convert System.Windows.Interop.InteropBitmap to System.Drawing.Bitmap?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我能够使用下面的代码解决我的问题。 msg.ThumbnailSource 包含 System.Windows.Interop.InteropBitmap 类型的对象
I was able to solve my problem using the code below. msg.ThumbnailSource contains System.Windows.Interop.InteropBitmap type of object
您可以使用 CopyPixels 获取像素并使用 Bitmap.Lock/Unlock 文档将像素传递给位图。
You could take the pixels using CopyPixels and use the code from the Bitmap.Lock/Unlock documentation to pass the pixels to the Bitmap.