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 / jpg-to-eps.java
Last active October 24, 2025 10:29
Develop a JPG to EPS Converter in Java
package com.example;
import java.io.IOException;
import com.aspose.eps.PsDocument;
import com.aspose.eps.device.PsSaveOptions;
import com.aspose.page.License;
public class main {
public static void main(String[] args) throws IOException {
try {
// Set the path for working directory and load the Aspose.Page license.
@aspose-com-gists
aspose-com-gists / xps-to-pdf.java
Last active October 23, 2025 21:10
XPS to PDF Converter in Java
package com.example;
import java.io.IOException;
import com.aspose.page.License;
import com.aspose.xps.XpsDocument;
public class main {
public static void main(String[] args) throws IOException {
try {
// Define path for the working directory and load the Aspose.Page license.
String dataDir = "data";
@aspose-com-gists
aspose-com-gists / change-svg-fill-color-in-python.md
Created October 23, 2025 11:50
Change SVG Fill Color in Python using Aspose.SVG
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – External LaTeX Packages Examples
Last active November 3, 2025 13:44
Use external LaTeX packages from file system, ZIP archives, custom directories with .NET
Aspose.TeX for .NET – External LaTeX Packages Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Other Managing TeX Options Examples
Last active November 3, 2025 13:44
Manage TeX engine options: interaction modes, job names, date/time, packages, fonts with .NET
Aspose.TeX for .NET – Other Managing TeX Options Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Other Ways to Provide Main TeX Input Examples
Last active November 3, 2025 13:44
Alternative ways to provide main TeX input: memory streams and terminal with .NET
Aspose.TeX for .NET – Other Ways to Provide Main TeX Input Examples
Aspose.TeX for .NET – Convert LaTeX to PDF Examples
Aspose.TeX for .NET – Convert LaTeX to XPS Examples
@aspose-com-gists
aspose-com-gists / Aspose.TeX for .NET – Convert LaTeX to Image Examples
Last active October 23, 2025 12:06
Convert LaTeX to PNG, JPEG, TIFF, BMP, SVG with .NET
Aspose.TeX for .NET – Convert LaTeX to Image Examples
@aspose-com-gists
aspose-com-gists / convert-svg-code-to-png-in-python.md
Last active October 22, 2025 08:03
Convert SVG Code to PNG in Python using Aspose.SVG