从图像控制保存图像不起作用

时间:2012-05-22 10:57:13

标签: c# .net wpf image save

我的GUI上有一个Image(Frameworkelement)。 那里有一个图像。现在我正在对这张图片进行双击,我想,那就是 使用默认的imageviewer,图像会自行保存并打开。

我的代码:

void image_MouseDown(object sender, MouseButtonEventArgs e)
{
    //Wayaround, cause there is no DoubleClick Event on Image 
    if (e.ChangedButton == MouseButton.Left && e.ClickCount == 2)
    {
        SaveToPng(((Image)sender), "SavedPicture.png");
        Process.Start("SavedPicture.png");
    }
}

void SaveToPng(FrameworkElement visual, string fileName)
{
    var encoder = new PngBitmapEncoder();
    SaveUsingEncoder(visual, fileName, encoder);
}

void SaveUsingEncoder(FrameworkElement visual, string fileName, BitmapEncoder encoder)
{
    RenderTargetBitmap bitmap = new RenderTargetBitmap(
        (int)visual.ActualWidth,
        (int)visual.ActualHeight,
        96,
        96,
        PixelFormats.Pbgra32);
    bitmap.Render(visual);
    BitmapFrame frame = BitmapFrame.Create(bitmap);
    encoder.Frames.Add(frame);

    using (var stream = File.Create(fileName))
    {
        encoder.Save(stream);
    }
}

打开图片可以正常使用Process.Start。问题是保存,它保存了图片:SavedPicture.png但是,它只是黑色,所以没有图形..也许有人可以告诉我,我的代码中有什么错误或知道更好的方法来保存图像WPF。

3 个答案:

答案 0 :(得分:1)

必须在保存之前显示图像。因此,如果您要使用RenderTargetBitmap,只需设置Image.Source并加载Image,然后使用SaveToPng进行保存(ActualWidthActualHeight一定不能是空的。

示例

如果Image内有Panel

<Grid x:Name="MyGrid">
    <Image x:Name="MyImage"/>
</Grid>

我在我的测试类构造函数中设置Image.Source,并且只有在加载图像后才保存它:

public MainWindow()
{
    InitializeComponent();

    BitmapImage bmp = new BitmapImage();
    bmp.BeginInit();
    bmp.UriSource = new Uri("image.png", UriKind.RelativeOrAbsolute);
    bmp.EndInit();
    MyImage.Source = bmp;

}

private void Window_Loaded(object sender, RoutedEventArgs e)
{
    RenderTargetBitmap bmp = new RenderTargetBitmap((int)MyGrid.ActualWidth,
            (int)MyGrid.ActualHeight, 96, 96, PixelFormats.Default);

    bmp.Render(MyImage);
    PngBitmapEncoder encoder = new PngBitmapEncoder();
    encoder.Frames.Add(BitmapFrame.Create(bmp));

    using (var stream = System.IO.File.Create("newimage.png"))
    { encoder.Save(stream); }
}

如果您不想使用Grid ActualWidthActualHeight,请将您的with和height作为参数传递。

答案 1 :(得分:0)

取决于Image.Source的类型,假设你有一个BitmapSource,就像在文章中那样,它应该是这样的:

var encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create((BitmapSource)image.Source));
using (FileStream stream = new FileStream(filePath, FileMode.Create))
    encoder.Save(stream);

顺便说一下RenderTargetBitmap类将Visual对象转换为位图。它由团队推荐

样品 http://msdn.microsoft.com/en-us/library/aa969819.aspx

答案 2 :(得分:0)

问题解决了。

我用过这个:File.WriteAllBytes() 从二进制格式保存图像