package officeSamples; import com.qoppa.office.PowerPointDocument; import com.qoppa.pdf.TIFFOptions; public class PPTXtoTIFF { public static void main (String [] args) { try { // Load the document PowerPointDocument pd = new PowerPointDocument ("input.pptx", OfficeSample.getPPTConvertOptions()); // Save the document as a multi-page TIFF file pd.saveDocumentAsTIFF("output.tif", new TIFFOptions(150, TIFFOptions.TIFF_FAX_GROUP4)); } catch (Throwable t) { t.printStackTrace(); } } }