Package com.aspose.slides

Examples of com.aspose.slides.TiffOptions


  {
    //Instantiate a PresentationEx object that represents a PPTX file
    Presentation pres = new Presentation("data/presentation.pptx");
   
    //Instantiate the TiffOptions class
    TiffOptions opts = new TiffOptions();
   
    //Set Image Size
    opts.setImageSize(new Dimension(500, 400));
   
    //Save the prsentation to TIFF with specified image size
    pres.save("data/Aspose_PPT-TIFF.tiff", SaveFormat.Tiff, opts);

    System.out.println("Slide Converted to Image Successfully");
View Full Code Here

TOP

Related Classes of com.aspose.slides.TiffOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.