我应该使用哪个参考来解析Image类?

时间:2015-07-21 21:43:28

标签: c# image png itextsharp

我调整了here中的一些代码,尝试将图像添加到我的PDF文件中,这是我使用iTextSharp生成的。这是代码:

string imagepath = Server.MapPath("Pictures");
Image gif = Image.GetInstance(imagepath + "/OfficeUseOnlyImg.png");
doc.Add(gif);

"图像" class无法识别,所以我右键单击Resolve it;我对于财富的尴尬感到吃惊 - 图片中的四个参考文献都提供了他们的服务:

enter image description here

那么我应该选择哪一个?我估计其中一个iTextSharp引用,但哪一个更受欢迎?

1 个答案:

答案 0 :(得分:2)

iTextSharp.tool.*内容是XML Worker的一部分,而不是iTextSharp核心的一部分。您需要iTextSharp.text.Image

iTextSharp.tool.xml.html.Image类是将<img>标记与iTextSharp.text.Image对象相映射的类。除非你想调整XML Worker,否则你不应该使用它。