Hello,
Could You give us an advice on Word document printing using Aspose components.
I’ve attached example of document I’m trying print.
There were several solutions:
- Printing using DocumentRenderer class
- Converting Word document to PDF and then printing with PdfViewer
but neither achieved required results.
MemoryStream ms = new MemoryStream(doc.GetBinary(), 0,doc.GetBinary().Length);
Aspose.Words.Viewer.DocumentRenderer renderer = new Aspose.Words.Viewer.DocumentRenderer(ms);
renderer.Print();
this first example printed document on two sheets of paper and inverted table borders so that visible borders became invisible and vice versa. Maybe there’s a way to configure DocumentRenderer printing options or something. Any help would be appreciated.
And I’d like to know if there is at least approximate estimate of when your new document viewer will be available and will it have printing feature? that’s very important to us.
The second solution worked well except that PdfViewer didn’t print barcode font correctly. Is there a way to fix this?
Thanks for your help