Signin/Signup with: 
Welcome, Guest
Username: Password: Remember me
Questions about Windows 8.1, 10, WindowsPhone, Windows UWP
  • Page:
  • 1

TOPIC:

Printing document 7 years 5 months ago #11440

  • skrblyk
  • skrblyk's Avatar Topic Author
  • Offline
  • New Member
  • New Member
  • Posts: 2
  • Thank you received: 0
Hello,
Is it possible to print a Pdf document (with RadaeePDF for Windows8.1 or Windows 10)?

Thanks

Please Log in or Create an account to join the conversation.

Printing document 7 years 4 months ago #11441

  • support
  • support's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 692
  • Thank you received: 59
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:
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.
The following user(s) said Thank You: skrblyk

Please Log in or Create an account to join the conversation.

  • Page:
  • 1
Powered by Kunena Forum