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
Key | Summary | Category |
---|---|---|
IMAGINGJAVA-8576 | Eps -> svg: System.ApplicationException: Unknown name ‘gcheck' | Feature |
IMAGINGJAVA-8575 | Can’t convert EPS to PDF | Feature |
IMAGINGJAVA-8573 | Cannot convert the EPS image to PDF | Feature |
IMAGINGJAVA-8572 | EPS export issue | Feature |
IMAGINGJAVA-8571 | Cannot load the EPS file | Feature |
IMAGINGJAVA-8570 | Fix bug with Eps file parsing | Feature |
IMAGINGJAVA-8553 | Fix invalidated TIFF OJpeg processing | Feature |
IMAGINGJAVA-8552 | Emf not converting to SVG in trial mode | Feature |
IMAGINGJAVA-8550 | Fix bugs with transparent and text rendering in the CDR | Feature |
IMAGINGJAVA-8546 | Fix invalidated TIFF OJpeg processing | Feature |
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");
}