This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
Learn how to Remove Blank Pages in Word using Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |