我正在使用iTextSharp版本5.5.2.0,当我尝试加载附加的pdf样本058780-02.pdf时,我在ImageRenderInfo.GetImage()方法中得到一个例外" PdfImageObject"不会返回,并显示一条消息"不支持颜色深度1"。 有什么建议? 谢谢, Abedellatif
答案 0 :(得分:1)
我修复了它,在222行添加修改iTextSharp源代码PdfImageObject
类FindColorspace
方法
if (PdfName.CALGRAY.Equals(tyca) || PdfName.DEVICEGRAY.Equals(tyca)) {
stride = (width * bpc + 7) / 8;
pngColorType = 0;
}