WPF Image to BitmapImage
WPF Image to BitmapImage Image 를 BitmapImage 로 변환합니다.using System.IO;using System.Windows.Media.Imaging;public BitmapImage ConvertToBitmapImage(System.Drawing.Image image){ BitmapImage bitmapImage = new BitmapImage(); using (MemoryStream memory = new MemoryStream()) { image.Save(memory, System.Drawing.Imaging.ImageFormat.Png); memory.Position = 0; bitmapImage.BeginI..