Skip to main content

Posts

Showing posts from July, 2021

Generate PowerPoint Document from Template in Java

  Generating a PowerPoint document from scratch is painful and time consuming, but it would be much easier if you use a template with pre-designed formats. In this article, I will introduce how to generate PowerPoint document from existing template in Java using Free Spire.Presentation for Java library. Add Dependencies There are two ways to include Free Spire.Presentation for Java in your Java project. For maven projects, add the following dependencies to your project’s pom.xml file: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <repositories>         <repository>             <id>com.e-iceblue</id>             <name>e-iceblue</name>             <url>http: //repo.e-iceblue.com/nexus/content/groups/public/</url>         </repository>    </repositories>    <dependencies>         <dependency>             <groupId> e-iceblue </groupId>             <artifactId>spire.presentation.free</artifactId>