I'm coding a web based software. I print barcodes.
There are 2 printers at the PC, so user always has to select barcode printer for printing barcode and laser printer for printing reports.
Is there any way to set a printer for a page. (From browser settings or via javascript)
For example :
www.example/barcodeprint.php
----> Barcode printer
www.example/reportprint.php
----> Laser printer
Thanks
I'm coding a web based software. I print barcodes.
There are 2 printers at the PC, so user always has to select barcode printer for printing barcode and laser printer for printing reports.
Is there any way to set a printer for a page. (From browser settings or via javascript)
For example :
www.example./barcodeprint.php
----> Barcode printer
www.example./reportprint.php
----> Laser printer
Thanks
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Feb 16, 2018 at 16:40 sipdorussipdorus 1,0531 gold badge14 silver badges31 bronze badges 2- If this is for an internal pany project, you could create a custom protocol that invokes some .NET code to open a specific print dialog, or if on mac, a custom protocol that invokes an AppleScript to do so. Otherwise, no, there's no generalized way to achieve this. – Patrick Roberts Commented Feb 19, 2018 at 20:32
- You are using PHP, so yeah, you could achieve that, but not with JavaScript (unless you are using node.js) – Ravenous Commented Feb 26, 2018 at 18:46
3 Answers
Reset to default 6 +25JavaScript will not allow you to override the default page setup of the client's browser, because the browser protects the hardware and operating system by sandboxing the scripts to avoid anything malicious.
But your issue is similar this question and maybe you could setup your printers with Google Cloud Print then use it's API to do it.
No, unfortunately that’s a machine specific configuration. Even users can have individual configurations of printers.
However there is a little hope. You can execute JS with printing specific event handlers to pop up instructions for the user to select a specific printer. This will help push them to select the correct one.
https://developer.mozilla/en-US/docs/Web/Guide/Printing
best way is using js print setup extension on firefox. But the extension dos not support over firefox 56. So you have to donwload max firefox 56 version, disconnect internet (automatically updates to firefox 58), setup firefox, disable auto update then re-connect internet. By this way you can use a specific printer without select printer dialog.
Thanks for other replies.