Command parameters
Command line usage:

pcltotiff <-i PCL File> [-o Output] [Options]

-i <string> Specify PCL files or directory which contains PCL files.
-o <string> Specify output directory.
-w Set overwrite if output file is exist.
-g <string> If no set. default save log in the same folder as program.
-g off Turn off to save log. default is turn on
-g "c:\pdf_stamp.log" Specify log file.
-d Include sub directory.
-# Keep original subfolder.
-s Delete source file when success.
-v View the result image files after convert done.
-q <int> Set jpg/jpeg quality (1-100).
-x <int> Set horizontal resolution in generated image files.
-y <int> Set vertical resolution in generated image files.
-b <int> Set bit count in generated image files. 1, 3(4bit grayscale), 4, 7(8bit grayscale), 8 and 24, default is 24.
-c <string> Set compression method in generated TIFF files. Supports compression: "NONE", "LZW", "JPEG", "PACKBITS", "G3", "G4", "RLE"
-m Set output to multi-page TIFF file, the default is output to single page TIFF files.
-r <string> Register.
-? Help.
----------------------------------------------------------------------------------------------------------------------------------------
Example:
  pcltotiff -i "c:\input.pcl" -i "c:\input\" -o "c:\output\" -b 8 Extract "c:\input.pcl" and all pcl files placed in"c:\input\" to "c:\output\", it is output 8bits tiff files.
  pcltotiff -i "c:\input.pcl" -o "c:\output\" -c jpeg -q 80 Extract "c:\input.pcl" to "c:\output\", it is jpeg compression and quality is 80.
  pcltotiff -i "c:\input.pcl" -o "c:\output\" -x 100 -y 100 Extract "c:\input.pcl" to "c:\output\". it si horizontal resolution is 100, vertical resolution is 100.
  pcltotiff -i "c:\input.pcl" -o "c:\output\" -c lzw -m Extract "c:\input.pcl" to "c:\output\", it is output multi-page TIFF file and using LZW arithmetic.