Pdfsigner with Timestamp Support Release

Here is a Windows command line version PdfSigner with TimeStamp(TSA) support,

Usage pdfsigner InPdf OutPdf Pkcs12KeyStore Pkcs12KeyStorePassword

because It is a demo application, so the TSA server only supports http://tss.pki.gva.es:8318/tsa
If you have interest, please download it here,pdfsigner(4.9M)

Pdftk.dll-Dynamic link library Version pdftk

After some modification, I compiled pdftk to Dynamic link library Version, pdftk.dll, and wote a delphi example to show how to use this DLL, here is the delphi example,

program pas;
{$APPTYPE CONSOLE}
//uses
// SysUtils;
function Convert(argc : integer; argv : Array of string): Integer; stdcall; external ‘pdftk.dll’ name ‘_Z7ConvertiPPc@8′;
var s: Array of string;
i,size:Integer;
begin
size :=System.ParamCount;
SetLength(s,size);
for i:=0 to [...]

Scale PDF disproportionally

there is a requirement from Planet Pdf Forum

I have 600 PDFs that need to be scaled 87.5% horizontally and 93% vertically. What Acrobat 8 plug-in or software do I need?

and here is the demo version of the solution, bases on iText, developed in java, so can be run at windows, Linux, FreeBSD and mac [...]

Next Page »