本文介绍了转换的BitmapSource到图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

林绑两个库一起。人们只给出了类型的输出 System.Windows.Media.Imaging.BitmapSource ,其他的只接受类型的输入为System.Drawing.Image 。我还没有能够找到一种方法来一个的BitmapSource转换为图像。

解决方案

 私人System.Drawing.Bitmap BitmapFromSource(的BitmapSource的BitmapSource)
{
  System.Drawing.Bitmap位图;
  使用(MemoryStream的outStream =新的MemoryStream())
  {
    BitmapEn codeR ENC =新BmpBitmapEn codeR();
    enc.Frames.Add(BitmapFrame.Create(的BitmapSource));
    enc.Save(outStream);
    位图=新System.Drawing.Bitmap(outStream);
  }
  返回的位图;
}
 

Im tying together two libraries. One only gives output of type System.Windows.Media.Imaging.BitmapSource, the other only accepts input of type System.Drawing.Image. I havent been able to find a way to convert a BitmapSource to a Image.

解决方案
private System.Drawing.Bitmap BitmapFromSource(BitmapSource bitmapsource)
{
  System.Drawing.Bitmap bitmap;
  using (MemoryStream outStream = new MemoryStream())
  {
    BitmapEncoder enc = new BmpBitmapEncoder();
    enc.Frames.Add(BitmapFrame.Create(bitmapsource));
    enc.Save(outStream);
    bitmap = new System.Drawing.Bitmap(outStream);
  }
  return bitmap;
}

这篇关于转换的BitmapSource到图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 18:49