The picture in excel is seriously distorted after conversion,Is there any solution optimization
in excel:
image.jpg (102.5 KB)
after conversion:
(1)HTML
image.jpg (100.5 KB)
(2)PNG
image.jpg (62.8 KB)
(3)PDF
image.jpg (124.7 KB)
this is my code
Workbook workbook = new Workbook("D://Aspose//EPPR_49454//EPPR_49454.xlsx");
workbook.save("D://Aspose//EPPR_49454//output/EPPR_49454.html", SaveFormat.HTML);
workbook.save("D://Aspose//EPPR_49454//output/EPPR_49454.pdf", SaveFormat.PDF);
ImageOrPrintOptions options = new ImageOrPrintOptions();
SheetRender render = new SheetRender(workbook.getWorksheets().get(0), options);
render.toImage(0, "D://Aspose//EPPR_49454//output/EPPR_49454.png");
this is the file
link:https://pan.baidu.com/s/12sDyQPVMA2dol00cMnKt_g
code:y1zh
The resolution of the photos in the original excel file is 5100 * 4300, and the resolution of the pictures obtained after Aspose conversion is 441 * 372. What can be done to solve this problem