Microsoft Windows Phone 8.1 support ends (13 Jul 2017)

Microsoft has ended support for Windows Phone 8.1

Questions about Windows 8.1, 10, WindowsPhone, Windows UWP

Printing document

More
9 years 3 months ago #11440 by skrblyk
Printing document was created by skrblyk
Hello,
Is it possible to print a Pdf document (with RadaeePDF for Windows8.1 or Windows 10)?

Thanks
More
9 years 3 months ago #11441 by support
Replied by support on topic Printing document
We're investigating about converting pdf to xps format.
It seems there isn't any native way.
If it'd right, the way might to render pages to bitmap and send them to the printer spooler.

The spooler could be driven with a code like that below:
Code:
PrintDocument pd = new PrintDocument(); pd.PrintPage += (sender, args) => { Image i = Image.FromFile("C://tmp01.jpg"); Point p = new Point(100, 100); args.Graphics.DrawImage(i, 10, 10, i.Width, i.Height); }; pd.Print();

We will work in integrating the sample code within one of the next releases.
Time to create page: 0.377 seconds
Powered by Kunena Forum