Class AddMessageToEachPage
- java.lang.Object
-
- org.apache.pdfbox.examples.pdmodel.AddMessageToEachPage
-
public class AddMessageToEachPage extends java.lang.ObjectThis is an example of how to add a message to every page in a pdf document.
-
-
Constructor Summary
Constructors Constructor Description AddMessageToEachPage()Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoIt(java.lang.String file, java.lang.String message, java.lang.String outfile)create the second sample document from the PDF file format specification.static voidmain(java.lang.String[] args)This will create a hello world PDF document.private voidusage()This will print out a message telling how to use this example.
-
-
-
Method Detail
-
doIt
public void doIt(java.lang.String file, java.lang.String message, java.lang.String outfile) throws java.io.IOExceptioncreate the second sample document from the PDF file format specification.- Parameters:
file- The file to write the PDF to.message- The message to write in the file.outfile- The resulting PDF.- Throws:
java.io.IOException- If there is an error writing the data.
-
main
public static void main(java.lang.String[] args) throws java.io.IOExceptionThis will create a hello world PDF document.
see usage() for commandline- Parameters:
args- Command line arguments.- Throws:
java.io.IOException
-
usage
private void usage()
This will print out a message telling how to use this example.
-
-