我想实现一个图像编辑程序,但是我无法在WPF中显示Bitmap。 对于一般编辑,我需要一个位图。但是我无法在图像中显示它。
private void MenuItemOpen_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog openfiledialog = new OpenFileDialog();
openfiledialog.Title = "Open Image";
openfiledialog.Filter = "Image File|*.bmp; *.gif; *.jpg; *.jpeg; *.png;";
if (openfiledialog.ShowDialog() == true)
{
image = new Bitmap(openfiledialog.FileName);
}
}
我将带有OpenFileDialog的Image加载到Bitmap中。现在我想在我的WPF中设置图片。像这样:
Image.Source = image;
我真的需要一个Bitmap来获取特殊像素的颜色!我需要一个简单的代码剪切。
感谢您的帮助!
答案 0 :(得分:62)
我现在使用此剪辑将Bitmap转换为ImageSource:
BitmapImage BitmapToImageSource(Bitmap bitmap)
{
using (MemoryStream memory = new MemoryStream())
{
bitmap.Save(memory, System.Drawing.Imaging.ImageFormat.Bmp);
memory.Position = 0;
BitmapImage bitmapimage = new BitmapImage();
bitmapimage.BeginInit();
bitmapimage.StreamSource = memory;
bitmapimage.CacheOption = BitmapCacheOption.OnLoad;
bitmapimage.EndInit();
return bitmapimage;
}
}
答案 1 :(得分:1)
这应该做:
ImageSource imgSource = new BitmapImage(new Uri("HERE GOES YOUR URI"));
image1.Source = imgSource; //image1 is your control
如果您需要Bitmap类,请尝试使用:
public ImageSource imageSourceForImageControl(Bitmap yourBitmap)
{
ImageSourceConverter c = new ImageSourceConverter();
return (ImageSource)c.ConvertFrom(yourBitmap);
}