Skip to content

Instantly share code, notes, and snippets.

View aspose-com-gists's full-sized avatar

Aspose.com Gists aspose-com-gists

View GitHub Profile
@aspose-com-gists
aspose-com-gists / introduction_converting_powerpoint_presentations_t.java
Created December 10, 2025 11:04
Convert PPTX to EMF in Java with Aspose.Slides for Java
import com.aspose.slides.*;
public class PptxToEmfConverter {
public static void main(String[] args) {
// Path to the source PPTX file
String sourceFile = "example.pptx";
// Output folder for EMF files
String outputDir = "output_emf";
// Load the presentation
@aspose-com-gists
aspose-com-gists / introduction_converting_powerpoint_presentations_t.java
Created December 10, 2025 10:38
Convert PPT to PDF with Aspose.Slides for Java
import com.aspose.slides.*;
public class PptToPdfConverter {
public static void main(String[] args) {
// Path to the license file (optional for evaluation)
try {
License license = new License();
license.setLicense("Aspose.Slides.Java.lic");
} catch (Exception e) {
System.out.println("License not found or invalid: " + e.getMessage());
@aspose-com-gists
aspose-com-gists / introduction_converting_presentation_files_to_pdf_.java
Created December 10, 2025 10:28
Convert PPTX to PDF with Aspose.Slides for Java
import com.aspose.slides.*;
import java.io.File;
public class PptxToPdfConverter {
public static void main(String[] args) {
// Load license (replace with your license file path)
try {
License license = new License();
license.setLicense("Aspose.Slides.Java.lic");
@aspose-com-gists
aspose-com-gists / add-slicer-in-excel-using-csharp.md
Created November 6, 2025 13:35
How to add, update, and edit slicers in Excel using C#
@aspose-com-gists
aspose-com-gists / pptx-to-md.java
Created November 4, 2025 19:43
Convert PPTX to Markdown in Java
package com.example;
import com.aspose.slides.*;
public class main {
public static void main(String[] args) {
String dataDir = "files";
License lic = new License();
lic.setLicense("license.lic");
// Path to source and output files.
String presentationName = dataDir + "PresentationDemo.pptx";
@aspose-com-gists
aspose-com-gists / export-powerpoint-notes-to-pdf.java
Created November 3, 2025 20:22
Export Powerpoint Notes to Pdf in Java
package com.example;
import com.aspose.slides.*;
public class main {
public static void main(String[] args) {
String dataDir = "data";
License lic = new License();
lic.setLicense("license.lic");
// Instantiate a Presentation object that represents a presentation file and
// load the source PPTX/PPT file.