Hello
I'm generating an xls file, and at the end I'm converting this file to a pdf. In the xls file, on the first sheet I'm putting 2 images, but in the pdf file I have only one image, the first one. Do you know why it's happening?
This is how I convert xls to pdf:
Spire.Xls.Converter.PdfConverter pdfConverter = new Spire.Xls.Converter.PdfConverter(_workbook);
Spire.Pdf.PdfDocument pdfDocument = new Spire.Pdf.PdfDocument();
Spire.Xls.Converter.PdfConverterSettings settings
= new Spire.Xls.Converter.PdfConverterSettings();
settings.EmbedFonts = true;
settings.TemplateDocument = pdfDocument;
pdfDocument = pdfConverter.Convert(settings);
pdfDocument.Pages.RemoveAt(3);
//PdfAnnotationCollection widgetCollection = page.AnnotationsWidget;
pdfDocument.SaveToFile("XLS-to-PDF.pdf");
pdfDocument.Close();
Thank you