Convert CGM to PPTM on Android via Java

Transform CGM to PPTM within your Android Applications without using Microsoft® PowerPoint or Adobe® Acrobat Reader

CGM Conversion via C# .NET CGM Conversion via Java CGM Conversion via C++

 

Why to Convert CGM to PPTM

CGM (Computer Graphics Metafile) is a vector graphics format used for storing and exchanging graphics data. It is widely used in the engineering and technical drawing fields. PPTM (PowerPoint Macro-Enabled Presentation) is a presentation file format used by Microsoft PowerPoint. It is similar to PPTX, but it supports macros and ActiveX controls. Therefore, it is necessary to convert CGM to PPTM in order to use the data in PowerPoint presentations.

How Aspose.Total Helps for CGM to PPTM Conversion

Aspose.Total for Android via Java is a comprehensive suite of APIs that helps developers to work with a wide range of file formats. It includes two APIs, Aspose.PDF for Android via Java and Aspose.Slides for Android via Java, which can be used to convert CGM to PPTM.

In the first step, you can export CGM to PPTX by using Aspose.PDF for Android via Java. This API provides a set of features to manipulate PDF documents, such as converting PDF to other file formats, extracting text and images, and more. After that, you can use Aspose.Slides for Android via Java to convert PPTX to PPTM. This API provides a set of features to create, manipulate, and convert presentations, such as creating presentations from scratch, adding text, shapes, and images, and more.

Therefore, by using Aspose.Total for Android via Java, you can easily integrate CGM to PPTM conversion feature inside your Android applications in two simple steps.

Android API to Export CGM to PPTM

  1. Open CGM file using Document class
  2. Convert CGM to PPTX by using save method
  3. Load PPTX document by using Presentation class
  4. Save the document to PPTM format using save method and set Pptm as SaveFormat

Get Started with Java File Format APIs

You can easily use Aspose.Total for Android via Java directly from Maven and install Aspose.PDF for Android via Java and Aspose.Slides for Android via Java in your applications.

Alternatively, you can get a ZIP file from downloads .

// load CGM file with an instance of Document class
Document document = new Document("template.cgm");
// save CGM as PPTX format 
document.save("PptxOutput.pptx", SaveFormat.Pptx); 
// instantiate a Presentation object that represents a PPTX file
Presentation presentation = new Presentation("PptxOutput.pptx");
// save the presentation as Pptm format
presentation.save("output.pptm", SaveFormat.Pptm);   

Open Password Protected CGM File in Android Apps

While loading CGM file format, your document might be password protected. Aspose.PDF for Android via Java allows you open encrypted documents as well. In order to open the encrypted file, you can initialize new instance of the Document class and pass filename and password as arguments.

// open CGM document
Document doc = new Document("input.cgm", "Your@Password");
// save CGM as PPTX format 
document.save("PptxOutput.pptx", SaveFormat.Pptx); 

Create Thumbnail Image of PPTM File in Android Applications

After converting CGM to PPTM, you can also create thumbnail images of your output document. By using rich in feature Aspose.Slides for Android via Java you can generate thumbnail images of the slides by creating and instance of the Presentation class. After that, you can obtain the reference of any desired slide by using its ID or index and get the thumbnail image of the referenced slide on a specified scale.

// instantiate a Presentation object that represents a PPTM file
Presentation presentation = new Presentation("output.pptm");
// access the first slide
ISlide sld = pres.getSlides().get_Item(0);
// create a full scale image
BufferedImage image = sld.getThumbnail(1f, 1f);
 // save the image to disk in PNG format
ImageIO.write(image, "PNG", new java.io.File("Thumbnail_out.png"));

Explore CGM Conversion Options with Android

Convert CGM to DOCM (Microsoft Word 2007 Marco File)
Convert CGM to DOT (Microsoft Word Template Files)
Convert CGM to DOTM (Microsoft Word 2007+ Template File)
Convert CGM to DOTX (Microsoft Word Template File)
Convert CGM to FLATOPC (Microsoft Word 2003 WordprocessingML)
Convert CGM to GIF (Graphical Interchange Format)
Convert CGM to MARKDOWN (Lightweight Markup Language)
Convert CGM to ODT (OpenDocument Text File Format)
Convert CGM to OTT (OpenDocument Template)
Convert CGM to PCL (Printer Command Language)
Convert CGM to PS (PostScript File)
Convert CGM to RTF (Rich Text Format)
Convert CGM to WORDML (Microsoft Word 2003 WordprocessingML)
Convert CGM to XAMLFLOW (Microsoft's Power Automate)
Convert CGM to CSV (Comma Seperated Values)
Convert CGM to DIF (Data Interchange Format)
Convert CGM to EXCEL (Spreadsheet File Formats)
Convert CGM to FODS (OpenDocument Flat XML Spreadsheet)
Convert CGM to MD (Markdown Language)
Convert CGM to ODS (OpenDocument Spreadsheet)
Convert CGM to SXC (StarOffice Calc Spreadsheet)
Convert CGM to TSV (Tab-separated Values)
Convert CGM to TXT (Text Document)
Convert CGM to XLAM (Excel Macro-Enabled Add-In)
Convert CGM to XLSB (Excel Binary Workbook)
Convert CGM to XLSM (Macro-enabled Spreadsheet)
Convert CGM to XLT (Excel 97 - 2003 Template)
Convert CGM to XLTM (Excel Macro-Enabled Template)
Convert CGM to XLTX (Excel Template)
Convert CGM to ODP (OpenDocument Presentation Format)
Convert CGM to OTP (OpenDocument Standard Format)
Convert CGM to POT (Microsoft PowerPoint Template Files)
Convert CGM to POTM (Microsoft PowerPoint Template File)
Convert CGM to POTX (Microsoft PowerPoint Template Presentation)
Convert CGM to POWERPOINT (Presentation Files)
Convert CGM to PPS (PowerPoint Slide Show)
Convert CGM to PPSM (Macro-enabled Slide Show)
Convert CGM to PPSX (PowerPoint Slide Show)
Convert CGM to PPT (PowerPoint Presentation)