Java Command Line

To transform a Tiff file into PDF:
  1. Run Java command. This requires a tiff2pdf.jar file.
  2. Set CLASSPATH to include the full path of the jar file.
    • For Windows:
      set CLASSPATH=<directory>\tiff2pdf.jar;%CLASSPATH%
    • For other operating systems:
      export CLASSPATH=<directory>/tiff2pdf.jar:$CLASSPATH
      Note:
    • Setting CLASSPATH should be on a single line.