gpt4 book ai didi

c# - 从 System.Drawing.Bitmap 加载 WPF BitmapImage

转载 作者:IT王子 更新时间:2023-10-29 03:29:22 27 4
gpt4 key购买 nike

我有一个 System.Drawing.Bitmap 的实例,并希望以 System.Windows.Media.Imaging.BitmapImage< 的形式将其提供给我的 WPF 应用程序.

最好的方法是什么?

最佳答案

如何从 MemoryStream 加载它?

using(MemoryStream memory = new MemoryStream())
{
bitmap.Save(memory, ImageFormat.Png);
memory.Position = 0;
BitmapImage bitmapImage = new BitmapImage();
bitmapImage.BeginInit();
bitmapImage.StreamSource = memory;
bitmapImage.CacheOption = BitmapCacheOption.OnLoad;
bitmapImage.EndInit();
}

关于c# - 从 System.Drawing.Bitmap 加载 WPF BitmapImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/94456/

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