Java Command Line

To transform a Tiff file into PDF:
  1. Set CLASSPATH to include the full path of the jar file.
    • For Windows:
      set CLASSPATH=<directory>\*;

      For example:

      set CLASSPATH=C:\tiff2pdf\*;

    • For other operating systems:
      export CLASSPATH="<directory>/*:"$CLASSPATH

      For example:

      export CLASSPATH="/tiff2pdf/*:"$CLASSPATH

      Note:
    • Setting CLASSPATH should be on a single line.
  2. Run Java command. This requires a tiff2pdf.jar file.