Print a PDF file by a URL on web

our company needs to know if the product can use a URL to send PDF to print. And also the names of the file can change in a program just to send to print the file.

I hope somebody answer our question.
==================
Thanks for your message, PDFPrint.exe doesn't support PDF URL, for example, the following command line is not work,

Pdfprint.exe "https://www.verypdf.com/test.pdf"

However, you can use wget to download this PDF file to local disk first, then you can print the PDF file from local disk again, for example,

Wget -O test.pdf "https://www.verypdf.com/test.pdf"
Pdfprint test.pdf

We hoping above solution will helpful to you.

Related Posts