Convert an XAML file to a BitmapImage

*爱你&永不变心* 提交于 2019-12-23 01:16:29

问题


I want to create a BitmapImage with a desired resolution from an XAML (text) file. how can I do that?

thanks.


回答1:


To load your Xaml file:

Stream s = File.OpenRead("yourfile.xaml");
Control control = (Control)XamlReader.Load(s);

And creating the BitmapImage:

    public static void SaveImage(Control control, string path)
    {
        using (MemoryStream stream = new MemoryStream())
        {
            GenerateImage(element, stream);
            Image img = Image.FromStream(stream);
            img.Save(path);
        }
    }

    public static void GenerateImage(Control control, Stream result)
    {
        //Set background to white
        control.Background = Brushes.White;

        Size controlSize = RetrieveDesiredSize(control);
        Rect rect = new Rect(0, 0, controlSize.Width, controlSize.Height);

        RenderTargetBitmap rtb = new RenderTargetBitmap((int)controlSize.Width, (int)controlSize.Height, IMAGE_DPI, IMAGE_DPI, PixelFormats.Pbgra32);

        control.Arrange(rect);
        rtb.Render(control);

        PngBitmapEncoder png = new PngBitmapEncoder();
        png.Frames.Add(BitmapFrame.Create(rtb));
        png.Save(result);
    }

    private static Size RetrieveDesiredSize(Control control)
    {
        control.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
        return control.DesiredSize;
    }

Make sure to include the right libraries! The classes are located in System.Windows.Media.

Hope this helps!



来源:https://stackoverflow.com/questions/11630071/convert-an-xaml-file-to-a-bitmapimage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!