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
public static void main(String[] args)
{
// Define path for the working files.
String dir = "/files/";
try {
// Call the HTMLDocument method to load the source HTML file.
com.aspose.html.HTMLDocument htmlDocument = new com.aspose.html.HTMLDocument(dir+"sample.html");
// Initialize an object of the ImageSaveOptions class with the TIFF image format.
com.aspose.html.saving.ImageSaveOptions options = new com.aspose.html.saving.ImageSaveOptions(com.aspose.html.rendering.image.ImageFormat.Tiff);
// The setBackgroundColor method will make the background color of the TIFF image white.
@aspose-com-gists
aspose-com-gists / BMP-to-EPS.cs
Created March 12, 2025 14:00
Convert BMP to EPS Online
using Aspose.Page.EPS.Device;
using Aspose.Page.EPS;
// Define the path for the working directory.
string dataDir = "files";
// Instantiate an instance of the PsSaveOptions class.
PsSaveOptions options = new PsSaveOptions();
// Convert BMP to EPS by calling the SaveImageAsEps method.
PsDocument.SaveImageAsEps(dataDir + "image.bmp", dataDir + "bmpTOeps.eps", options);
@aspose-com-gists
aspose-com-gists / merge-jpg-to-pdf.md
Last active March 12, 2025 10:04
Best Ways to Merge JPG to PDF Online and with Code
@aspose-com-gists
aspose-com-gists / JPG-to-EPS.cs
Created March 10, 2025 15:08
Convert JPG to EPS in C#
using Aspose.Page.EPS.Device;
using Aspose.Page.EPS;
// Define the path for the working directory.
string dataDir = "files";
// Create an instance of the PsSaveOptions class.
PsSaveOptions options = new PsSaveOptions();
// Save JPEG image to EPS file by calling the SaveImageAsEps method.
PsDocument.SaveImageAsEps(dataDir + "input1.jpg", dataDir + "output1.eps", options);
@aspose-com-gists
aspose-com-gists / insert-text-in-ps-file-using-unicode-string.cs
Created March 9, 2025 21:31
Insert Text in PS File using Unicode String
string dataDir = "files";
string FONTS_FOLDER = @"necessary_fonts/";
//Create output stream for PostScript document
using (Stream outPsStream = new FileStream(dataDir + "AddTextUsingUnocodeString_outPS.ps", FileMode.Create))
{
//Create save options with A4 size
PsSaveOptions options = new PsSaveOptions();
// Set custom fonts folder. It will be added to system fonts folders for finding needed font.
options.AdditionalFontsFolders = new string[] { FONTS_FOLDER };
//A text to write to PS file
@aspose-com-gists
aspose-com-gists / add-text-in-ps.cs
Last active March 9, 2025 21:57
How to Add Text in PS File
using Aspose.Page.EPS.Device;
using Aspose.Page.EPS;
using System.Drawing;
// Define the working directory path.
string dataDir = "files";
// Create output stream for PostScript document.
using (Stream outPsStream = new FileStream(dataDir + "AddText_outPS.ps", FileMode.Create))
{
// Instantiate an instance of the PsSaveOptions class.
package com.example;
import com.aspose.imaging.Image;
import com.aspose.imaging.Size;
import com.aspose.imaging.VectorMultipageImage;
import com.aspose.imaging.imageoptions.VectorRasterizationOptions;
import java.util.LinkedList;
import java.util.List;
public final class PageOptionsBuilder