Advanced EPS Rendering
Linux developers can experience enhanced EPS rendering quality with Aspose.Imaging for Python via .NET 24.5 release. Build feature-rich image manipulation solutions on Linux machines having the ability to render EPS files with high quality. Please check out the following code example, which showcases the EPS loading and rendering functionality, and then save the loaded EPS to PNG format.
from aspose.imaging import Image, LoadOptions, DataRecoveryMode
load_options = LoadOptions()
load_options.data_recovery_mode = DataRecoveryMode.CONSISTENT_RECOVER
with Image.load("input.eps", load_options) as image:
image.save("output.png")
Source*
Upgraded File Processing
With the latest Python imaging API release, you can not only enjoy optimized EPS to PNG export but also work with the enhanced ability to save GIF files without any distortions, and EPS to SVG conversion.
This sample code highlights loading and saving GIF files:
from aspose.imaging import Image
with Image.load("Input.gif") as image:
image.save("Output.gif")
Source*
The following coding snippet shows how to save an EPS file to an SVG vector:
from aspose.imaging import Image
with Image.load("image.eps") as image:
image.save("output.svg")
Source*
Rendering EmfPlus
Files on Linux
An optimized EmfPlus
rendering functionality has been added in this version of the imaging API that also provides improved performance. You can now render and save EmfPlus
files to PNG images on Linux as shown in the following example:
from aspose.imaging import Image
with Image.load("test.emf") as image:
image.save("test.png")
Source*
Updated Public API
A new property aspose.imaging.LoadOptions.concurrent_image_processing
has been added to the public API.
Take your Python applications to the next level on Linux systems by downloading Aspose.Imaging for Python via .NET 24.5 today!
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Imaging for Python via .NET 24.5 Release Notes.