4

我想创建一个支持原始打印的电子应用程序。

任何关于我可以采取的图书馆或路径的建议都将不胜感激。我做了一些研究,但似乎没有什么是最新的。我想获取所有可用的打印机并获取默认打印机并使用它进行打印。

我有一个小例子可以给我看,它会很棒!

4

1 回答 1

1

在尝试了几种方法和包之后,我能够通过以下方式取得成功:

  • 共享打印机
  • 使用 node-cmd 将文件的副本发送到共享打印机。

注意,我只在 Windows 上使用和测试过。

yarn add node-cmd

例子

const fs = window.require('fs')
const path = window.require('path')
const cmd = window.require('node-cmd')

//Save the raw output to the filesystem
const filePath = path.join(__dirname, 'rawprint.prn') //or wherever you want to save it

//Create a command to copy the file to the shared printer path (e.g. \\localhost\DPD ). Make sure that var is sanitised first! 
const command = `COPY /B "${filePath}" "${pathToSharedPrinter}"`

cmd.get( command, (err, data, stderr) => {

    if ( !err ) {
        console.log('Success!')
    } else {
        console.log( err.message )
    }

})
于 2019-12-11T17:25:52.590 回答