Browse our Products

Aspose.Imaging for Java 23.10 - Release notes

Improvement: Reduced the size of library by 2 Mb.

Competitive features:

  • Improving EPS graphics rendering : Eps -> svg: System.ApplicationException: Unknown name ‘gcheck’
  • Improving EPS graphics rendering : Can’t convert EPS to PDF
  • Improving EPS graphics rendering : Cannot convert the EPS image to PDF
  • Improving EPS graphics rendering : EPS export issue
  • Improving EPS graphics rendering : Cannot load the EPS file
  • Improving EPS graphics rendering : Fix bug with Eps file parsing
KeySummaryCategory
IMAGINGJAVA-8576Eps -> svg: System.ApplicationException: Unknown name ‘gcheck'Feature
IMAGINGJAVA-8575Can’t convert EPS to PDFFeature
IMAGINGJAVA-8573Cannot convert the EPS image to PDFFeature
IMAGINGJAVA-8572EPS export issueFeature
IMAGINGJAVA-8571Cannot load the EPS fileFeature
IMAGINGJAVA-8570Fix bug with Eps file parsingFeature
IMAGINGJAVA-8553Fix invalidated TIFF OJpeg processingFeature
IMAGINGJAVA-8552Emf not converting to SVG in trial modeFeature
IMAGINGJAVA-8550Fix bugs with transparent and text rendering in the CDRFeature
IMAGINGJAVA-8546Fix invalidated TIFF OJpeg processingFeature

Public API changes:

Added APIs:

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

Removed APIs:

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

Usage Examples:

IMAGINGJAVA-8576 Eps -> svg: System.ApplicationException: Unknown name ‘gcheck’

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

IMAGINGJAVA-8575 Can’t convert EPS to PDF

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

IMAGINGJAVA-8573 Cannot convert the EPS image to PDF

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

IMAGINGJAVA-8572 EPS export issue

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

IMAGINGJAVA-8571 Cannot load the EPS file

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

IMAGINGJAVA-8570 Fix bug with Eps file parsing

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

IMAGINGJAVA-8553 Fix invalidated TIFF OJpeg processing

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

IMAGINGJAVA-8552 Emf not converting to SVG in trial mode

//without license
License license = new License();
license.setLicense("");

String baseFolder = "D:\\";
String file = "image7.emf";
String inputFileName = baseFolder + file;
String outputFileName = inputFileName + ".svg";
try (Image image = Image.load(inputFileName))
{
    image.save(outputFileName, new SvgOptions());
}

IMAGINGJAVA-8550 Fix bugs with transparent and text rendering in the CDR

try (Image image = Image.load(inputFile))
{
    image.save(inputFile+".jpg");
}

IMAGINGJAVA-8546 Fix invalidated TIFF OJpeg processing

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