2012-10-11 107 views

回答

1

檢查this reference,這應該有助於

TextSharp支持所有主要的圖片類型:JPG,TIF,GIF,BMP,PNG和WMF。有很多方法可以使用Image.GetInstance()方法使用iTextSharp創建圖像。可能最常用的選項是將文件系統路徑和文件名傳遞到方法中:

string pdfpath = Server.MapPath("PDFs"); 
string imagepath = Server.MapPath("Images"); 
Document doc = new Document(); 
try 
{ 
    PdfWriter.GetInstance(doc, new FileStream(pdfpath + "/Images.pdf", FileMode.Create)); 
    doc.Open(); 

    doc.Add(new Paragraph("GIF")); 
    Image gif = Image.GetInstance(imagepath + "/mikesdotnetting.gif"); 
    doc.Add(gif); 
} 
catch (Exception ex) 
{ 
    //Log error; 
} 
finally 
{ 
    doc.Close(); 
} 
相關問題