gpt4 book ai didi

WPF:System.Windows.Interop.InteropBitmap 到 System.Drawing.Bitmap

转载 作者:行者123 更新时间:2023-12-04 06:29:57 29 4
gpt4 key购买 nike

有没有办法将 System.Windows.Interop.InteropBitmap 转换为 System.Drawing.Bitmap?

谢谢

最佳答案

我能够使用下面的代码解决我的问题。 msg.ThumbnailSource 包含 System.Windows.Interop.InteropBitmap 类型的对象

BitmapSource bmpSource = msg.ThumbnailSource as BitmapSource;
MemoryStream ms = new MemoryStream();
BitmapEncoder encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(bmpSource));
encoder.Save(ms);
ms.Seek(0, SeekOrigin.Begin);


System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(ms);

关于WPF:System.Windows.Interop.InteropBitmap 到 System.Drawing.Bitmap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5536653/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com