真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C#中如何使用iTextSharp操作PDF文檔

這篇文章主要介紹了C#中如何使用iTextSharp操作PDF文檔,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作介紹好的網(wǎng)站是理念、設(shè)計(jì)和技術(shù)的結(jié)合。成都創(chuàng)新互聯(lián)公司擁有的網(wǎng)站設(shè)計(jì)理念、多方位的設(shè)計(jì)風(fēng)格、經(jīng)驗(yàn)豐富的設(shè)計(jì)團(tuán)隊(duì)。提供PC端+手機(jī)端網(wǎng)站建設(shè),用營(yíng)銷思維進(jìn)行網(wǎng)站設(shè)計(jì)、采用先進(jìn)技術(shù)開(kāi)源代碼、注重用戶體驗(yàn)與SEO基礎(chǔ),將技術(shù)與創(chuàng)意整合到網(wǎng)站之中,以契合客戶的方式做到創(chuàng)意性的視覺(jué)化效果。

iTextSharp是一個(gè)用于操作PDF文件的組件DLL程序,在C#程序中可以引用iTextSharp組件,用于開(kāi)發(fā)與PDF文件相關(guān)的報(bào)表等功能,利用iTextSharp組件提供出來(lái)的方法接口,我們可以實(shí)現(xiàn)很多與PDF文檔有關(guān)的操作,如打開(kāi)PDF文檔對(duì)象、往PDF文檔中添加段落、添加圖片鏈接等等,功能非常的強(qiáng)大。這邊簡(jiǎn)單對(duì)iTextSharp類進(jìn)行了封裝,提供一些常用的PDF操作方法。

iTextSharp官網(wǎng):http://www.itextpdf.com/  (英文好的建議直接查看原始文檔)。

在Visual Studio開(kāi)發(fā)的項(xiàng)目的過(guò)程中,你可以手動(dòng)引入iTextSharp的兩個(gè)DLL文件到你的項(xiàng)目中,引入成功后即可在項(xiàng)目中使用。如果你的Visual Studio安裝有NuGet  工具,可以通過(guò)NuGet工具來(lái)自動(dòng)安裝。

依托iTextSharp組件封裝好的PDF操作幫助類如下,只包含一些簡(jiǎn)單的操作,如果讀者有更復(fù)雜的需求,請(qǐng)查閱官方文檔后熟悉后自行封裝編寫:
public class PDFOperation
{
#region 構(gòu)造函數(shù)
///


/// 構(gòu)造函數(shù)
///

public PDFOperation()
{
rect = PageSize.A4;
document = new Document(rect);
}
///
/// 構(gòu)造函數(shù)
///

/// 頁(yè)面大小(如"A4")
public PDFOperation(string type)
{
SetPageSize(type);
document = new Document(rect);
}
///
/// 構(gòu)造函數(shù)
///

/// 頁(yè)面大小(如"A4")
/// 內(nèi)容距左邊框距離
/// 內(nèi)容距右邊框距離
/// 內(nèi)容距上邊框距離
/// 內(nèi)容距下邊框距離
public PDFOperation(string type, float marginLeft, float marginRight, float marginTop, float marginBottom)
{
SetPageSize(type);
document = new Document(rect, marginLeft, marginRight, marginTop, marginBottom);
}
#endregion
#region 私有字段
private Font font;
private Rectangle rect;   //文檔大小
private Document document;//文檔對(duì)象
private BaseFont basefont;//字體
#endregion
#region 設(shè)置字體
///
/// 設(shè)置字體
///

public void SetBaseFont(string path)
{
basefont = BaseFont.CreateFont(path, BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
}
///
/// 設(shè)置字體
///

/// 字體大小
public void SetFont(float size)
{
font = new Font(basefont, size);
}
#endregion
#region 設(shè)置頁(yè)面大小
///
/// 設(shè)置頁(yè)面大小
///

/// 頁(yè)面大小(如"A4")
public void SetPageSize(string type)
{
switch (type.Trim())
{
case "A4":
rect = PageSize.A4;
break;
case "A8":
rect = PageSize.A8;
break;
}
}
#endregion
#region 實(shí)例化文檔
///
/// 實(shí)例化文檔
///

/// 文檔相關(guān)信息(如路徑,打開(kāi)方式等)
public void GetInstance(Stream os)
{
PdfWriter.GetInstance(document, os);
}
#endregion
#region 打開(kāi)文檔對(duì)象
///
/// 打開(kāi)文檔對(duì)象
///

/// 文檔相關(guān)信息(如路徑,打開(kāi)方式等)
public void Open(Stream os)
{
GetInstance(os);
document.Open();
}
#endregion
#region 關(guān)閉打開(kāi)的文檔
///
/// 關(guān)閉打開(kāi)的文檔
///

public void Close()
{
document.Close();
}
#endregion
#region 添加段落
///
/// 添加段落
///

/// 內(nèi)容
/// 字體大小
public void AddParagraph(string content, float fontsize)
{
SetFont(fontsize);
Paragraph pra = new Paragraph(content, font);
document.Add(pra);
}
///
/// 添加段落
///

/// 內(nèi)容
/// 字體大小
/// 對(duì)齊方式(1為居中,0為居左,2為居右)
/// 段后空行數(shù)(0為默認(rèn)值)
/// 段前空行數(shù)(0為默認(rèn)值)
/// 行間距(0為默認(rèn)值)
public void AddParagraph(string content, float fontsize, int Alignment, float SpacingAfter, float SpacingBefore, float MultipliedLeading)
{
SetFont(fontsize);
Paragraph pra = new Paragraph(content, font);
pra.Alignment = Alignment;
if (SpacingAfter != 0)
{
pra.SpacingAfter = SpacingAfter;
}
if (SpacingBefore != 0)
{
pra.SpacingBefore = SpacingBefore;
}
if (MultipliedLeading != 0)
{
pra.MultipliedLeading = MultipliedLeading;
}
document.Add(pra);
}
#endregion
#region 添加圖片
///
/// 添加圖片
///

/// 圖片路徑
/// 對(duì)齊方式(1為居中,0為居左,2為居右)
/// 圖片寬(0為默認(rèn)值,如果寬度大于頁(yè)寬將按比率縮放)
/// 圖片高
public void AddImage(string path, int Alignment, float newWidth, float newHeight)
{
Image img = Image.GetInstance(path);
img.Alignment = Alignment;
if (newWidth != 0)
{
img.ScaleAbsolute(newWidth, newHeight);
}
else
{
if (img.Width > PageSize.A4.Width)
{
img.ScaleAbsolute(rect.Width, img.Width * img.Height / rect.Height);
}
}
document.Add(img);
}
#endregion
#region 添加鏈接、點(diǎn)
///
/// 添加鏈接
///

/// 鏈接文字
/// 字體大小
/// 鏈接地址
public void AddAnchorReference(string Content, float FontSize, string Reference)
{
SetFont(FontSize);
Anchor auc = new Anchor(Content, font);
auc.Reference = Reference;
document.Add(auc);
}
///
/// 添加鏈接點(diǎn)
///

/// 鏈接文字
/// 字體大小
/// 鏈接點(diǎn)名
public void AddAnchorName(string Content, float FontSize, string Name)
{
SetFont(FontSize);
Anchor auc = new Anchor(Content, font);
auc.Name = Name;
document.Add(auc);
}
#endregion
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“C#中如何使用iTextSharp操作PDF文檔”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!


本文標(biāo)題:C#中如何使用iTextSharp操作PDF文檔
分享URL:http://weahome.cn/article/gjeigs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部