在以下示例中,將介紹在PDF文檔頁面設(shè)置頁面切換按鈕的方法。示例中將頁面切換按鈕的添加分為了兩種情況,一種是設(shè)置按鈕跳轉(zhuǎn)到首頁、下頁、上頁或者最后一頁,另一種是設(shè)置按鈕跳轉(zhuǎn)到指定頁面。兩種方法適應(yīng)不同的程序設(shè)計需要,可自行選擇合適的添加方法。
在西鄉(xiāng)塘等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站制作、成都網(wǎng)站設(shè)計、外貿(mào)營銷網(wǎng)站建設(shè) 網(wǎng)站設(shè)計制作按需求定制設(shè)計,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站設(shè)計,全網(wǎng)營銷推廣,外貿(mào)網(wǎng)站制作,西鄉(xiāng)塘網(wǎng)站建設(shè)費用合理。
這里的代碼示例需要使用類庫Spire.PDF for .NET,版本4.0 。在使用該類庫時,在項目程序中引用Spire.Pdf.dll即可(dll文件在安裝路徑下的Bin文件中獲?。?。
如:
【C#】
using Spire.Pdf;
using Spire.Pdf.Actions;
using Spire.Pdf.Fields;
using Spire.Pdf.Graphics;
using System.Drawing;
namespace ButtonToAppointedPage_PDF
{
class Program
{
static void Main(string[] args)
{
//實例化PdfDocument類,加載PDF測試F文檔
PdfDocument doc = new PdfDocument();
doc.LoadFromFile("sample.pdf");
//允許添加Form
doc.AllowCreateForm = true;
//獲取文檔最后一頁
PdfPageBase lastPage = doc.Pages[doc.Pages.Count - 1];
//在頁面指定位置添加指定大小的按鈕
PdfButtonField button = new PdfButtonField(lastPage, "Click To Back ");
button.Bounds = new RectangleF(lastPage.ActualSize.Width - 150, lastPage.ActualSize.Height - 400, 60, 20);
//設(shè)置按鈕邊框顏色
button.BorderStyle = PdfBorderStyle.Solid;
button.BorderColor = new PdfRGBColor(Color.White);
//設(shè)置按鈕背景色
button.BackColor = Color.Azure;
//設(shè)置按鈕提示語
button.ToolTip = "To the first page";
//設(shè)置按鈕文字字體和顏色
PdfTrueTypeFont trueTypeFont = new PdfTrueTypeFont(new Font("Avant Garde", 9f), true);
button.Font = trueTypeFont;
button.ForeColor = Color.Black;
//創(chuàng)建PdfNamedAction實例,在傳入的參數(shù)中選擇上一頁、下一頁、首頁或最后一頁
PdfNamedAction namedAction = new PdfNamedAction(PdfActionDestination.FirstPage);
//應(yīng)用動作
button.Actions.MouseDown = namedAction;
//添加按鈕到文檔
doc.Form.Fields.Add(button);
//保存并打開PDF文檔
doc.SaveToFile("result.pdf", FileFormat.PDF);
System.Diagnostics.Process.Start("result.pdf");
}
}
}
【VB.NET】
Imports Spire.Pdf
Imports Spire.Pdf.Actions
Imports Spire.Pdf.Fields
Imports Spire.Pdf.Graphics
Imports System.Drawing
Namespace ButtonToAppointedPage_PDF
Class Program
Private Shared Sub Main(ByVal args As String())
Dim doc As PdfDocument = New PdfDocument()
doc.LoadFromFile("sample.pdf")
doc.AllowCreateForm = True
Dim lastPage As PdfPageBase = doc.Pages(doc.Pages.Count - 1)
Dim button As PdfButtonField = New PdfButtonField(lastPage, "Click To Back ")
button.Bounds = New RectangleF(lastPage.ActualSize.Width - 150, lastPage.ActualSize.Height - 400, 60, 20)
button.BorderStyle = PdfBorderStyle.Solid
button.BorderColor = New PdfRGBColor(Color.White)
button.BackColor = Color.Azure
button.ToolTip = "To the first page"
Dim trueTypeFont As PdfTrueTypeFont = New PdfTrueTypeFont(New Font("Avant Garde", 9F), True)
button.Font = trueTypeFont
button.ForeColor = Color.Black
Dim namedAction As PdfNamedAction = New PdfNamedAction(PdfActionDestination.FirstPage)
button.Actions.MouseDown = namedAction
doc.Form.Fields.Add(button)
doc.SaveToFile("result.pdf", FileFormat.PDF)
System.Diagnostics.Process.Start("result.pdf")
End Sub
End Class
End Namespace
PS:這里的PdfNameAction類支持四種按鈕跳轉(zhuǎn)動作
添加效果(截圖):
點擊文中的按鈕時,即可跳轉(zhuǎn)至按鈕指向的頁面。
【C#】
using Spire.Pdf;
using Spire.Pdf.Actions;
using Spire.Pdf.Fields;
using Spire.Pdf.General;
using Spire.Pdf.Graphics;
using System.Drawing;
namespace Buttom2
{
class Program
{
static void Main(string[] args)
{
//實例化PdfDocument類,加載PDF文檔
PdfDocument doc = new PdfDocument();
doc.LoadFromFile("sample.pdf");
//允許添加Form
doc.AllowCreateForm = true;
//獲取最后一頁
PdfPageBase lastPage = doc.Pages[doc.Pages.Count - 1];
//在頁面指定位置添加按鈕
PdfButtonField button = new PdfButtonField(lastPage, "Back");
button.Bounds = new RectangleF(lastPage.ActualSize.Width - 150, lastPage.ActualSize.Height - 700, 50, 20);
//設(shè)置按鈕邊框顏色
button.BorderStyle = PdfBorderStyle.Solid;
button.BorderColor = new PdfRGBColor(Color.Transparent);
//設(shè)置按鈕背景色
button.BackColor = Color.WhiteSmoke;
//設(shè)置按鈕提示語
button.ToolTip = "Click and back to the third page";
//設(shè)置按鈕文字字體和顏色
PdfTrueTypeFont trueTypeFont = new PdfTrueTypeFont(new Font("Avant Garde", 9f), true);
button.Font = trueTypeFont;
button.ForeColor = Color.Black;
//實例化PdfDestination對象,傳入指定頁碼到第3頁
PdfDestination destination = new PdfDestination(doc.Pages[2]);
//創(chuàng)建go to動作
PdfGoToAction goToAction = new PdfGoToAction(destination);
//應(yīng)用動作
button.Actions.MouseDown = goToAction;
//添加按鈕到文檔
doc.Form.Fields.Add(button);
//保存并打開PDF文檔
doc.SaveToFile("result.pdf", FileFormat.PDF);
System.Diagnostics.Process.Start("result.pdf");
}
}
}
【VB.NET】
Imports Spire.Pdf
Imports Spire.Pdf.Actions
Imports Spire.Pdf.Fields
Imports Spire.Pdf.General
Imports Spire.Pdf.Graphics
Imports System.Drawing
Namespace Buttom2
Class Program
Private Shared Sub Main(ByVal args As String())
Dim doc As PdfDocument = New PdfDocument()
doc.LoadFromFile("sample.pdf")
doc.AllowCreateForm = True
Dim lastPage As PdfPageBase = doc.Pages(doc.Pages.Count - 1)
Dim button As PdfButtonField = New PdfButtonField(lastPage, "Back")
button.Bounds = New RectangleF(lastPage.ActualSize.Width - 150, lastPage.ActualSize.Height - 700, 50, 20)
button.BorderStyle = PdfBorderStyle.Solid
button.BorderColor = New PdfRGBColor(Color.Transparent)
button.BackColor = Color.WhiteSmoke
button.ToolTip = "Click and back to the third page"
Dim trueTypeFont As PdfTrueTypeFont = New PdfTrueTypeFont(New Font("Avant Garde", 9F), True)
button.Font = trueTypeFont
button.ForeColor = Color.Black
Dim destination As PdfDestination = New PdfDestination(doc.Pages(2))
Dim goToAction As PdfGoToAction = New PdfGoToAction(destination)
button.Actions.MouseDown = goToAction
doc.Form.Fields.Add(button)
doc.SaveToFile("result.pdf", FileFormat.PDF)
System.Diagnostics.Process.Start("result.pdf")
End Sub
End Class
End Namespace
添加效果(截圖):
點擊按鈕,即可跳轉(zhuǎn)至指定的文檔第3頁。
關(guān)于添加PDF頁面跳轉(zhuǎn)按鈕的方法,本文到這里就介紹完畢,希望文中的代碼能給各位開發(fā)者提供一定參考價值。
如需轉(zhuǎn)載,請注明出處。
感謝閱讀!