在c#中加载8bit BPP作为Format32bppArgb

时间:2014-10-21 08:11:32

标签: c# aforge

当我这样做时,我有一个8位BPP的TIF原始文件:

Bitmap imag = new Bitmap(imgN)

然后:

imag.PixelFormat.ToString()

我得到Format32bppArgb, 我应该得到8位,

我试过这样做:

AForge.Imaging.Image.Clone(imag, System.Drawing.Imaging.PixelFormat.Format8bppIndexed);

但我得到

  

未处理的类型' System.Exception'发生在   System.Drawing.dll附加信息:图形对象不能   从具有索引像素格式的图像创建。

也许我需要先将它加载到一个字节数组然后加载到一个位图?

0 个答案:

没有答案