Package slides.workingwithpresentation

Source Code of slides.workingwithpresentation.AsposeCreatePresentation

package slides.workingwithpresentation;

import com.aspose.slides.Presentation;
import com.aspose.slides.SaveFormat;
import com.aspose.slides.Slide;

public class AsposeCreatePresentation
{
  public static void main(String[] args)
  {
    //Instantiate a Presentation object that represents a PPT file
    Presentation pres = new Presentation();
    //Writing the presentation as a PPT file
    pres.save("data/NewPPT_Aspose.ppt", SaveFormat.Ppt);

    //Printing the status
        System.out.println("Aspose Slides added successfully!");
  }
}
TOP

Related Classes of slides.workingwithpresentation.AsposeCreatePresentation

TOP
Copyright © 2018 www.massapi.com. 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.