无法在C#中保存我的画布中的透明PNG

时间:2014-09-13 18:53:53

标签: c# .net wpf canvas

我制作了一个WPF画布程序,它允许用户添加一些PNG模板并制作自己的新设计。

我可以完成工作

然而,当我尝试保存时,我得到了白色背景 有没有办法获得透明的输出?

这是我保存图片的代码

public void SaveTo(string f)
    {
        Visual v = Dc;
        /// get bound of the visual
        Rect b = VisualTreeHelper.GetDescendantBounds(v);

        /// new a RenderTargetBitmap with actual size of c
        RenderTargetBitmap r = new RenderTargetBitmap(
            (int)b.Width, (int)b.Height,
            96, 96, PixelFormats.Pbgra32);

        /// render visual
        r.Render(v);

        /// new a JpegBitmapEncoder and add r into it 
        JpegBitmapEncoder e = new JpegBitmapEncoder();
        e.Frames.Add(BitmapFrame.Create(r));

        /// new a FileStream to write the image file
        FileStream s = new FileStream(f,
            FileMode.OpenOrCreate, FileAccess.Write);
        e.Save(s);
        s.Close();
    }

1 个答案:

答案 0 :(得分:2)

您正在编码为Jpeg。

Jpegs没有透明度信息(也就是alpha通道)。

您应该使用PngBitmapEncoder