LATEST
NEWS - 14th March 2009
What is PDF Image Stamp COM Component ?
PDF Image Stamp COM Component is for ASP, .NET, PHP, Cold Fusion, VB, VC,
Perl and other
languages.
PDF Image Stamp software automates
the process of applying JPEG Images to different sized pdf's
PDF Image stamp contains many special features like starting from any page, 1 in
nth pages, x,y positioning on the page, image size scaling, image opacity, flip
horizontal page, flip vertical page, alignment (centre, left, right) & list of files processing.
Example .asp, vb, .net, php, cold fusion & vc++ code included
simple ASP example of usage:- (by
default it put's page numbers on the pdf file)
Set obj = Server.CreateObject("PDFImageStamp.PDFImageStampCom.1")
obj.startPage = 1
obj.endPage = 99999
result = CStr(obj.getPDFImageStampFile("c:\\input.pdf", "c:\\output.pdf",
"c:\\image.jpg",""))
simple VC++ example of usage:-
PDFImageStampLib::IPDFImageStampComPtr *test = NULL;
struct __declspec(uuid("{44D24184-7D5E-43B1-8A0C-2146D223C1FF}")) IClass;
test = new PDFImageStampLib::IPDFImageStampComPtr( __uuidof(IClass) );
(*test)->startPage = 1;
(*test)->endPage = 99999;
(*test)->getPDFImageStampFile((char *)(_bstr_t)"c:\\input.pdf",(char *)(_bstr_t)"c:\\output.pdf",(char *)(_bstr_t)"c:\\image.jpg",(char *)(_bstr_t)"");
simple VB example of usage:-
Dim obj As PDFImageStampLib.PDFImageStampCom
Set obj = New PDFImageStampLib.PDFImageStampCom
obj.startPage = 1
obj.endPage = 99999
obj.GetPDFImageStampFile("C:\input.pdf","C:\output.pdf","C:\image.jpg","")
simple ASP .NET using C# example of usage:-
PDFImageStamp.PDFImageStampCom PDFImageStamp = new PDFImageStamp.PDFImageStampCom();
obj.startPage = 1
obj.endPage = 99999
PDFImageStamp.getPDFImageStampFile("C:\input.pdf","C:\output.pdf","C:\image.jpg","");
simple Perl example of usage:-
use Win32;
use Win32::API;
use Win32::OLE;
my $obj = Win32::OLE->new ("PDFImageStamp.PDFImageStampCom");
$obj->PutstartPage(1);
$obj->PutendPage(99999);
$obj->getPDFImageStampFile("5pages.pdf", "textstamp-out.pdf", "image.jpg","");