我正在尝试根据PDF中的已知位置坐标添加超链接。我已经尝试编辑物理pdf代码并添加了一个链接,但在此过程中删除了pdf上的其他内容。
[/Rect [ x x x x ]
/Action
<</Subtype /URI/URI (http://www.xxxxx.com/)>>
/Subtype /Link
/ANN pdfmark
有没有办法在不破坏现有pdf的情况下添加超链接?将转换为不同的文件格式添加链接并转换回来是一种更好的方法吗?可能的商业用途阻止使用某些gnu许可产品。
答案 0 :(得分:1)
Debenu Quick PDF Libarary也提供了解决方案。我还建议您不要编辑物理代码&#39; PDF文件(带记事本或其他),因为它不会给出任何解决方案 - 在其他情况下都不会。
以下是使用Debenu Quick PDF Library的示例代码:
/* Add a link to a webpage*/
// Set the origin for the co-ordinates to be the top left corner of the page.
DPL.SetOrigin(1);
// Adding a link to an external web page using the AddLinkToWeb function.
DPL.AddLinkToWeb(200, 100, 60, 20, "www.debenu.com", 0);
// Hyperlinks and text are two separate elements in a PDF,
//so we'll draw some text now so that you know
//where the hyperlink is located on the page.
DPL.DrawText(205, 114, "Click me!");
// When the Debenu Quick PDF Library object is initiated a blank document
// is created and selected in memory by default. So
// all we need to do now is save the document to
// the local hard disk to see the changes that we've made.
DPL.SaveToFile("link_to_web.pdf");
Debenu成员
答案 1 :(得分:0)
Docotic.Pdf library可以添加现有PDF的超链接。该库不 * GPL许可,可在购买许可证后用于商业解决方案。
下面是一个代码,可以在PDF的第一页上添加超链接。
using System;
using System.Drawing;
public static void AddHyperlink()
{
// NOTE:
// When used in trial mode, the library imposes some restrictions.
// Please visit http://bitmiracle.com/pdf-library/trial-restrictions.aspx
// for more information.
using (PdfDocument pdf = new PdfDocument("input.pdf"))
{
PdfPage page = pdf.Pages[0];
RectangleF rectWithLink = new RectangleF(10, 70, 200, 100);
page.AddHyperlink(rectWithLink, new Uri("http://google.com"));
pdf.Save("output.pdf");
}
}
免责声明:我为图书馆的供应商工作。