You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PrintService[] printServices = PrintServiceLookup.lookupPrintServices(null, null);
System.out.println("Number of print services: " + printServices.length);
for (PrintService printer : printServices) {
System.out.println("Printer: " + printer.getName());
}
While Executing the above code the doppio through the following Exception.
java.lang.UnsatisfiedLinkError: Native method 'sun.print.CUPSPrinter.initIDs()Z' not implemented.
The text was updated successfully, but these errors were encountered:
Doppio does not currently support printers, and we do not have plans to add support.
To add printer support, I imagine someone would need to write or compile a printer driver to JavaScript that produces postscript or a PDF, and instruct the browser to print it.
(I'm happy to accept any pull requests moving us in this direction, but cannot commit any resources to it myself.)
PrintService[] printServices = PrintServiceLookup.lookupPrintServices(null, null);
System.out.println("Number of print services: " + printServices.length);
for (PrintService printer : printServices) {
System.out.println("Printer: " + printer.getName());
}
While Executing the above code the doppio through the following Exception.
java.lang.UnsatisfiedLinkError: Native method 'sun.print.CUPSPrinter.initIDs()Z' not implemented.
The text was updated successfully, but these errors were encountered: