Hi,
I have problem with printing PDF document, loaded from file. Document after printing looks different than original one:
- some polish characters are missing
- cells in table are not in correct places
Is it a problem with code below or internally with Spire.PDF library?
Code which I wrote:
var pdfdocument = new PdfDocument();
pdfdocument.LoadFromFile(fileName, FileFormat.PDF);
pdfdocument.PrintDocument.PrinterSettings.Copies = 1;
pdfdocument.PrintDocument.Print();
pdfdocument.Dispose();