I have an pdf document that have one barcode that is generated from font.
I have an console application , that I want to do is simple, just to print this page that have bacode on it.
I am using following code to print the page:
string path = @"c:\57998033321.pdf";
PdfDocument doc = new Spire.Pdf.PdfDocument();
doc.LoadFromFile(path);
doc.PrintDocument.Print();
The page is printed but the results is different and text looks like is on top of barcode .
I have attached my pdf document called 57998033321.pdf .
Please help to find out what is happening.