【C#/WPF】保存BitmapImage数据到文件中

2021-03-22 21:25

阅读:528

标签:log   pre   文件   styles   files   doc   coder   ring   over   

原文:【C#/WPF】保存BitmapImage数据到文件中

参考:

http://stackoverflow.com/questions/35804375/how-do-i-save-a-bitmapimage-from-memory-into-a-file-in-wpf-c

/// 
/// 把内存里的BitmapImage数据保存到硬盘中
/// 
/// BitmapImage数据
/// 输出的文件路径
public static void SaveBitmapImageIntoFile(BitmapImage bitmapImage, string filePath)
{
    BitmapEncoder encoder = new PngBitmapEncoder();
    encoder.Frames.Add(BitmapFrame.Create(bitmapImage));

    using (var fileStream = new System.IO.FileStream(filePath, System.IO.FileMode.Create))
    {
        encoder.Save(fileStream);
    }
}

【C#/WPF】保存BitmapImage数据到文件中

标签:log   pre   文件   styles   files   doc   coder   ring   over   

原文地址:https://www.cnblogs.com/lonelyxmas/p/9473466.html


评论


亲,登录后才可以留言!