Custom Page numbering using events

The Amyuni PDF Converter is our Printer Driver that enables you to convert any documents to PDF format. If you have any questions about installing and using the Amyuni PDF Converter please post them here.
Post Reply
peterwegrzyn
Posts: 24
Joined: Tue Aug 19 2003

Custom Page numbering using events

Post by peterwegrzyn »

Is it possible to put page numbers on documents? I specifically want to put the number a certain distance from the *bottom* of the page with merged PDF docs that have varying page heights. I'm using VB6.
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

Hello,

You can add page numbers to PDF file using our PDF Creator, and not the PDF Converter.

I am adding here a sample code in C#, you can easily convert it to VB6

Code: Select all

With PDFCreactiveX1

    .Open App.Path & "\source files\" & "Amyuni PDF Converter.pdf", ""
    .SetLicenseKey Licensee, ActivationCode
    .SetPageNumbering 1, "Verdana,12,700,0,0,", 100, 10, &HFF8080, 1, "#page"
    .Refresh
    .Save App.Path & "\PageNumbering.pdf", 0

End With
Hope this helps
peterwegrzyn
Posts: 24
Joined: Tue Aug 19 2003

Post by peterwegrzyn »

Is the activation key the same as for the converter? I.e. de we have to buy a license for that separate from the driver?
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

Hello,

If you have licensed PDF Suite then you definitely have the PDF Converter and the PDF Creator.

If you have licensed the PDF Converter you can upgrade it to PDF Suite to get the PDF Creator.
Post Reply