Hello,
I want to convert an excel file to a pdf file. The code is like this :
Workbook workbook = new Workbook(inputPath);
PdfSaveOptions options = new PdfSaveOptions(SaveFormat.Pdf);
workbook.Save(dataDir + “output.pdf”, options);
Here we can see the original document in excel
quality.PNG (59.0 KB)
And here we can see the document exported to pdf with excel
qualityexceltopdf.PNG (34.1 KB)
Here we can see the document export to pdf with aspose
qualityref.PNG (30.0 KB)
We can see that there is a margin, so the images are more little and there is a black line on the image.
Thank you,