Free Support Forum - aspose.com
Shape is missing when save to PDF
Aspose.Cells Product Family
xhaixia
June 28, 2017, 3:06am
#1
Workbook wb = new Workbook("C:/产品营销全景报表.xlsx");
wb.save("C:/产品营销全景报表.pdf", SaveFormat.PDF);
shakeel.faiz
January 2, 2021, 6:51pm
#2
Hi,
Thanks for your posting and using Aspose.Cells.
We have tested this issue with the following sample code using the latest version:
Aspose.Cells for Java v16.12.7
and found, it is working good. I have attached the
output pdf
for a reference.
Java
Workbook wb = new Workbook(dirPath + “aa.xlsx”);
PdfSaveOptions opts = new PdfSaveOptions();
opts.setOnePagePerSheet(true);
wb.save(dirPath + “aa.pdf”, opts);