Any update on this?
Hi,
Thanks for your posting and using Aspose.Cells.
We are afraid there is no update for you at this moment. However, we have logged your comments in our database. Once, there is some update for you, we will let you know asap.
Hi there, any update on this? I’m really looking forward to get this sorted…
Hi,
Thanks for your posting and using Aspose.Cells.
We are afraid, there is no update for you at this moment. However, we have logged your comments in our database against this issue. Please spare us some time. Once, we will have some fix or update for you, we will let you know asap.
Hi,
you want to get highly clear image, you don’t need to set it. If you want to
get highly compressed image, please set to lower value.
Also refer the Aspose.Cells sdk, Quality property only applies for JPG image and it will not effect to other formatted image. For more about the quality image, you may set the RenderingHints as following.
//Affects the shape(lines, rectangles and so on).
ImageOrPrintOptions.RenderingHintsMap.put(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
//Affects the text.
ImageOrPrintOptions.RenderingHintsMap.put(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
The issues you have found earlier (filed as CELLSJAVA-40495) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.
Hi,
Hi,
Hi,
I have also tried not setting the quality when generating the image and doesn’t make any difference.
The difference with the image is mainly the overall quality, the weight is much lower, the lines of the chart look pixelated, etc…
I will provide examples soon.
Thanks for your answer.
Hi,
Hi,
Hi,
Hi,
e.g
Sample code:
Workbook workbook = new Workbook("excel.xlsx");
Worksheet sheet = workbook.getWorksheets().get(0);
Chart cht = sheet.getCharts().get(0);
ImageOrPrintOptions imageOptions = new ImageOrPrintOptions();
imageOptions.setImageFormat(ImageFormat.getEmf());
imageOptions.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
imageOptions.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
imageOptions.setQuality(100);
cht.toImage("outExcelimage1.emf", imageOptions);
Hi Alfonsol,
Hi,
Thanks for using Aspose.Cells for Java.
Please download and try this fix: Aspose.Cells for Java (Latest Version) and let us know your feedback.
The issues you have found earlier (filed as CELLSJAVA-40833) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.