We have the .NET and TWAIN bundle and I am trying to print a PDF file using:
DTI.ImageMan.
ImImage pdfImage = DTI.ImageMan.ImImage.FromByteArray(pdfBytes, new DTI.ImageMan.Codecs.PdfDecoder());
pdfImage.Print(e.Graphics,
new Rectangle(e.MarginBounds.Left, e.MarginBounds.Top, e.MarginBounds.Left + pdfImage.Width, e.MarginBounds.Top + pdfImage.Height) );
but I get the exception "PDFIMport Support not licensed. Please contact Data Techniques for additional information." Is there no way to print PDFs with this license? Thanks,
Graham.