1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #include "stdafx.h" #using <mscorlib.dll> #import "PDFsign.tlb" no_namespace named_guids using namespace System; int _tmain() { IPDFsignPtr NVsign; ::CoInitialize(NULL); NVsign.CreateInstance(__uuidof(PDFsign)); NVsign->PutCertificateSubject("Test certificate"); NVsign->PutCertificatePassword("password"); NVsign->PutReason("I am the creator of this document"); NVsign->PutInvisible(true); NVsign->SignPDF("c:\\in.pdf", "c:\\out.pdf"); Console::WriteLine(S"Done."); return 0; } |