LATEST
NEWS - 4th September 2008
What is PDF Link COM Component ?
PDF Link COM Component is for ASP, .NET, PHP, Cold Fusion, VB, VC and other
languages.
PDF Link
software automates the process of
applying text with external web links, removing, creating, changing and
reporting.
link types like: http, https, ftp, mailto, file are all supported.
PDF Link contains many special features like removing all links,
creating links based on text, adding new text links, changing links from
text, changing links from current links, changing part of a link, link
reporting and much more.
Add text in color, styles, link styles, select font sizes and types,
filename stamping with link, page range selection etc etc
Example .asp, vb, .net, php, cold fusion & vc++ code included
simple ASP example of usage:-
(export info and xmp data to files)
Set obj = Server.CreateObject("PDFLink.PDFLinkCom.1")
obj.strText = "added link"
obj.strLink = "http://www.adobe.com/index.htm"
result = CStr(obj.getPDFLinkFile("c:\\input.pdf", "c:\\output.pdf")
simple VC++ example of usage:-
PDFLinkLib::IPDFLinkComPtr *test = NULL;
struct __declspec(uuid("{54D24184-7D5E-43B1-8A0C-2146D223C1FF}")) IClass;
test = new PDFLinkLib::IPDFLinkComPtr( __uuidof(IClass) );
(*test)->PutstrText(_T("added link"));
(*test)->PutstrLink(_T("http://www.adobe.com/index.htm"));
(*test)->getPDFLinkFile((char *)(_bstr_t)"c:\\input.pdf",(char *)(_bstr_t)"c:\\output.pdf");
simple VB example of usage:-
Dim obj As PDFLinkLib.PDFLinkCom
Set obj = New PDFLinkLib.PDFLinkCom
obj.strText = "added link"
obj.strLink = "http://www.adobe.com/index.htm"
obj.GetPDFLinkFile("C:\input.pdf","C:\output.pdf")
simple ASP .NET using C# example of usage:-
PDFLink.PDFLinkCom obj = new PDFLink.PDFLinkCom();
obj.strText = "added link";
obj.strLink = "http://www.adobe.com/index.htm";("C:\\input.pdf","C:\\output.pdf");