简体   繁体   English

如何使用 Node.js 将 docx 文件打印到打印机

[英]How to print a docx file to a printer using Node.js

I am trying to write a program in node.js that will allow the user to print a docx file to the printer.我正在尝试在 node.js 中编写一个程序,该程序将允许用户将 docx 文件打印到打印机。

anyone that can show me how its done in Node.js?谁能告诉我它是如何在 Node.js 中完成的?

You can use the node-printer module.您可以使用节点打印机模块。

Here's example how to use it to print a file:这是如何使用它来打印文件的示例:

// use: node printFile.js [filePath printerName]
var printer = require("printer"),
    filename = process.argv[2] || __filename;

console.log('platform:', process.platform);
console.log('try to print file: ' + filename);

if( process.platform != 'win32') {
  printer.printFile({filename:filename,
    printer: process.env[3], // printer name, if missing then will print to default printer
    success:function(jobID){
      console.log("sent to printer with ID: "+jobID);
    },
    error:function(err){
      console.log(err);
    }
  });
} else {
  // not yet implemented, use printDirect and text
  var fs = require('fs');
  printer.printDirect({data:fs.readFileSync(filename),
    printer: process.env[3], // printer name, if missing then will print to default printer
    success:function(jobID){
      console.log("sent to printer with ID: "+jobID);
    },
    error:function(err){
      console.log(err);
    }
  });
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM