Is there a way to print PDF from UWP application? Other than rendering it as png
or BitmapImage
.
I had look at Microsoft printing sample and pdf rendering sample to achieve printing pdf by rendering it into bitmapimage. But, it looses the quality of the pdf. Would like to know if any other efficient method available without using libraries .
Edit(31/12/2018)
I tried to find direct solutions from Microsoft without using libraries. But, there isn't any so i used PDfSharp
to solve my problem with the help of AppServiceBridge
by Microsoft. I have used AppService bridge because PdfSharp isn't directly available for WinRT.
AppServiceBridge
blocks the application capability to deploy in ARM processor's. So it is not running Surface Pro X. Still looking for native printing pdf without rendering into image. – Titanic