PS and XPS File Manipulation via Python API
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Aspose.Page for Python via .NET is an on premise Python API that allows you to add PS/EPS and XPS manipulation features to your own applications. The API also supports converting XPS, EPS & PS documents to other formats.
Developers can perform various operations on PS and XPS documents, such as, add text, images, pages, gradient, grid using the visual brush, transparency object and set opacity mask. It allows you to create, edit and convert the file pages as well as the ability to manipulate documents and elements, create vector graphics, group shapes, and specifying colors in different color spaces including sRGB, scRGB, and any space-based on ICC profile.
XPS, EPS & PS Processing Features
- Create & modify XPS documents via API.
- Create PS & EPS documents via API.
- Add pages to PS & XPS documents.
- Create vector graphic shapes (Path element) and text strings (Glyphs element).
- Group various elements as well as modify the appearance of text strings and graphics.
- Support for visual brush, image brush, solid color brush, and more.
- Work with multiple documents within an XPS document.
- Preserve print tickets and add default print tickets to new XPS documents.
- Perform cross-package operations such as inserting a page from another document.
- Conversion of XPS, PS & EPS documents to other popular formats.
- Supports PostScript language levels 1-3 with an exception of font types: Type2 (CFF), Type14 (Chameleon), Types 9, 10, 11.
Supported Read Formats
XPS, EPS, PS
Save XPS Documents As
Fixed Layout: PDF
Image: BMP, TIFF, JPEG, PNG
Save PS & EPS Documents As
Metafiles: EMF, WMF
Animation: GIF
Image: BMP, TIFF, JPEG, PNG
Platform Independence
Aspose.Page for Python via .NET can be used to develop 32-bit and 64-bit Python applications for Windows where Python 3.5 or later is installed.
Get Started
Are you ready to give Aspose.Page for Python a try? Simply execute pip install aspose-page
to install wheel package package. If you already have Aspose.Page for Python and want to upgrade the version, please execute pip install --upgrade aspose-page
to get the latest version.
Create an XPS Document from Scratch via Python Code
Execute the below code snippet to see how Aspose.Page API performs in your own environment or check the GitHub Repository for other common usage scenarios.
dir = Util.get_data_dir_working_with_document()
x_docs = XpsDocument()
glyphs = x_docs.add_glyphs("Arial", 12, aspose.pydrawing.FontStyle.REGULAR, 300, 450, "Hello World!")
glyphs.fill = x_docs.create_solid_color_brush(aspose.pydrawing.Color.black)
x_docs.save(dir + "output.xps")
Convert a PostScript (PS) File to PDF Format
Aspose.Page for Python allows you to work with document conversion, such as; PS to images, PS to PDF, XPS to images, XPS to PDF and so on. The following snippet demonstrates the conversion of PS to PDF using streams:
data_dir = Util.get_data_dir_working_with_document_conversion()
document = PsDocument(data_dir + "input.ps")
suppress_errors = True
options = PdfSaveOptions(suppress_errors)
options = PdfSaveOptions(new Size(595, 842), suppress_errors)
options.additional_fonts_folders = [ """{FONT_FOLDER}""" ]
document.save_as_pdf(data_dir + "outputPDF_out.pdf", options)
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License