Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Imaging for Python via .NET 24.5 MacOS 11 arm64

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 54.97MB
  • Date Added:
  • 2/5/2024

Description

It contains Aspose.Imaging for Python via .NET 24.5, MacOS 11, arm64 release.

File Details

High Quality EPS Rendering

Aspose.Imaging for Python via .NET 24.5 supports building image manipulation solutions on macOS M1 offering enhanced EPS rendering 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*

File Processing Enhancements

The latest release of the Python imaging API not only addresses the problems with EPS to PNG export but also delivers an 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*

Render EmfPlus Files on Apple Mac

We have added an optimized EmfPlus rendering capability in this version of the imaging API which offers improved performance. You can now render and save EmfPlus files to PNG images on macOS M1 as shown in the following example:

from aspose.imaging import Image

with Image.load("test.emf") as image:
image.save("test.png")

Source*

Additions to The Public API

This release includes a new property aspose.imaging.LoadOptions.concurrent_image_processing to the public API.

Upgrade your Python applications on macOS ARM/M1 systems by downloading Aspose.Imaging for Python via .NET 24.5 and enhance your image processing projects.

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.

 English