DOCX JPG PDF XML POTM
  Product Family
SVG

Convert POTM to SVG in Java

Export POTM slides as SVG files using Aspose.Slides for Java without Microsoft PowerPoint.

Convert POTM to SVG Using Java

Use Aspose.Slides for Java to load a POTM template and export slides as SVG files. You can install the aspose-slides package in a Maven-based project by adding the repository and dependency below.

Repository

<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java API</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Dependency

<dependency>
    <groupId>com.aspose</groupId>
    <artifactId>aspose-slides</artifactId>
    <version>version of aspose-slides API</version>
    <classifier>jdk17</classifier>
</dependency>

How to Convert POTM to SVG via Java

Java developers can convert a POTM file to SVG in just a few lines of code.

  1. Load the POTM file with the Presentation class.
  2. Get the target ISlide object from Presentation.getSlides.
  3. Write the slide as an SVG file with the ISlide.writeAsSvg method.

System Requirements

Before running the Java conversion sample code, make sure that you have the following prerequisites.

  • Microsoft Windows, Linux, macOS, or another OS with a supported Java Runtime Environment.
  • Get the latest version of Aspose.Slides for Java from Maven.
 

POTM to SVG Java Conversion Source Code

Presentation presentation = new Presentation("template.potm");
try {
    ISlide slide = presentation.getSlides().get_Item(0);

    FileOutputStream outputStream = new FileOutputStream("output.svg");
    try {
        slide.writeAsSvg(outputStream);
    } finally {
        outputStream.close();
    }
} finally {
    presentation.dispose();
}
 
  • Free App to Convert POTM to SVG

    Convert presentations and slides online.

    Other Supported Conversions

    You can also convert POTM into many other file formats including the ones listed below.

    POTM TO BMP (Bitmap Image)
    POTM TO GIF (Graphical Interchange Format)
    POTM TO HTML (Hyper Text Markup Language)
    POTM TO JPEG (JPEG Image)
    POTM TO ODP (OpenDocument Presentation Format)
    POTM TO OTP (OpenDocument Standard Format)
    POTM TO PDF (Portable Document Format)
    POTM TO PNG (Portable Network Graphics)
    POTM TO POT (Microsoft PowerPoint Template Files)
    POTM TO POTX (Microsoft PowerPoint Template Presentation)
    POTM TO PPS (PowerPoint Slide Show)
    POTM TO PPSM (Macro-enabled Slide Show)
    POTM TO PPSX (PowerPoint Slide Show)
    POTM TO PPT (Microsoft PowerPoint 97-2003)
    POTM TO PPTM (Macro-enabled Presentation File)
    POTM TO PPTX (Open XML presentation Format)
    POTM TO SWF (SWF Format)
    POTM TO TIFF (Tagged Image Format)
    POTM TO XPS (XML Paper Specifications)