Shape is missing when save to PDF

Workbook wb = new Workbook("C:/产品营销全景报表.xlsx");
wb.save("C:/产品营销全景报表.pdf", SaveFormat.PDF);

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);