Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

Ok, so I'm trying to print from a webpage (the typical "print" button, but I don't want the print dialog to appear) so I decided to use my already existing node.js backend to do the task (mainly because printing from browser is nearly impossible without the printing dialog).

I found the node-printer ( https://github.com/tojocky/node-printer ) module, and it works great, but only with text. I tried to send RAW data, but what it does is printing the raw characters. What I actually need is to print a logo, along with some turn information (this is for a customer care facility).

Also, the printer must be installed locally, so I can't use IPP.

Is there any way to print an image, or a combination of images and text with node.js? can it be done through node-printer or is there another way?

node-printer calls lpr on posix with hardcoded arguments, so I don't think you will be able to print images with it. Lennart May 2, 2014 at 22:35 Are you trying to print to a printer that the client browser is connected to? Or print to a printer that the node.js server is connected to? jfriend00 May 2, 2014 at 22:36 node.js server will be running on the client machine also (is a system for printing turns) ezabaw May 2, 2014 at 22:56

I ended calling an exe to do the work for me. I use a child_process to call printhtml , which does all the printing work for me. My code ended this way:

var exec = require('child_process').exec;
exec('printhtml.exe file=file.html', function(err, data) {  
    console.log(data.toString());                       

Actually, you can print image using node-printer. This work for me

var Printer = require('node-printer');
var fs = require('fs');
// Get available printers list 
var listPrinter = Printer.list();
// Create a new Pinter from available devices 
var printer = new Printer('YOUR PRINTER HERE. GET IT FROM listPrinter');
// Print from a buffer, file path or text 
var fileBuffer = fs.readFileSync('PATH TO YOUR IMAGE');
var jobFromBuffer = printer.printBuffer(fileBuffer);
// Listen events from job 
jobFromBuffer.once('sent', function() {
    jobFromBuffer.on('completed', function() {
        console.log('Job ' + jobFromBuffer.identifier + 'has been printed');
        jobFromBuffer.removeAllListeners();
        

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.