Browse our Products

Aspose.Imaging for JAVA 24.5 - Release notes

Competitive features:

KeySummaryCategory
IMAGINGJAVA-8723EPS to PNG export issue: NotImplementedExceptionEnhancement
IMAGINGJAVA-8715Resolve EPS rendering issuesEnhancement
IMAGINGJAVA-8712Incorrect conversion the EPS image to SVGEnhancement
IMAGINGJAVA-8711EPS to PNG export issue: NotImplementedExceptionEnhancement
IMAGINGJAVA-8710ESP to PNG: System.ApplicationException: Unknown name ’eexec'Enhancement
IMAGINGJAVA-8708Saving GIF results distorted output fileEnhancement
IMAGINGJAVA-8706Looks like Aspose.Imaging.Image.GetFileFormat has lock insideEnhancement
IMAGINGJAVA-8705EmfPlus is not rendered correctlyEnhancement

Public API changes:

Added APIs:

Please see corresponding cumulative API changes for Aspose.Imaging for .NET 24.5 version

Removed APIs:

Please see corresponding cumulative API changes for Aspose.Imaging for .NET 24.5 version

Usage Examples:

IMAGINGJAVA-8723 EPS to PNG export issue: NotImplementedException

EPS to PNG export example:

try (Image image = Image.load("image.eps"))
{
   image.save("output.png");
}

IMAGINGJAVA-8715 Resolve EPS rendering issues

EPS to PNG export example:

String input = "input.eps";
try (Image image = Image.load(input, new LoadOptions() {{ setDataRecoveryMode(DataRecoveryMode.ConsistentRecover); }}))
{
   image.save(input + ".png");
}

IMAGINGJAVA-8712 Incorrect conversion the EPS image to SVG

EPS to SVG export example:

try (Image image = Image.load("image.eps"))
{
   image.save("image.eps.svg");
}

IMAGINGJAVA-8711 EPS to PNG export issue: NotImplementedException

EPS to PNG export example:

try (Image image = Image.load("image.eps"))
{
   image.save("output.png");
}

IMAGINGJAVA-8710 ESP to PNG: System.ApplicationException: Unknown name ’eexec’

EPS to PNG export example:

try (Image image = Image.load("image.eps"))
{
   image.save("output.png");
}

IMAGINGJAVA-8708 Saving GIF results distorted output file

GIF saving example:

try (Image image = Image.load("input.gif"))
{
   image.save("output.gif");
}

IMAGINGJAVA-8706 Looks like Aspose.Imaging.Image.GetFileFormat has lock inside

String bigFileName = "15-MB-docx-file-download.docx";
String smallFileName = "source.docx";

// Just to heat up Java, without elapsing time
detectFormat(smallFileName, true);
System.out.println("Run single thread ------------------");

initSingleThread();

initMultiThreads();

System.out.println("------------------");

IMAGINGJAVA-8705 EmfPlus is not rendered correctly

try (Image image = Image.load("test.emf"))
 {
     image.save("test.png");
 }