如何在 asp.net C# 中使用 itextSharp 添加图像文件。以及需要哪个命名空间
Image jpg** = Image.GetInstance(new Uri(URL))
如何在 asp.net C# 中使用 itextSharp 添加图像文件。以及需要哪个命名空间
Image jpg** = Image.GetInstance(new Uri(URL))
您可以iTextSharp.text.Image
用于添加图像。像这样的东西:
iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(image, System.Drawing.Imaging.ImageFormat.Jpeg);
myDocument.Add(pic);
其中myDocument是Document
itextsharp 类的对象
在这里,如果有一篇详细的文章讨论在 itextsharp 中处理图像
http://www.mikesdotnetting.com/Article/87/iTextSharp-Working-with-images
并且您可能也有兴趣浏览文档,所以这里是链接:
你可以试试这个
using(Stream ImageStream = new FileStream(imageUrl, FileMode.Open, FileAccess.Read, FileShare.Read))
图像图像 = Image.GetInstance(ImageStream);