我想创建一个支持原始打印的电子应用程序。
任何关于我可以采取的图书馆或路径的建议都将不胜感激。我做了一些研究,但似乎没有什么是最新的。我想获取所有可用的打印机并获取默认打印机并使用它进行打印。
我有一个小例子可以给我看,它会很棒!
我想创建一个支持原始打印的电子应用程序。
任何关于我可以采取的图书馆或路径的建议都将不胜感激。我做了一些研究,但似乎没有什么是最新的。我想获取所有可用的打印机并获取默认打印机并使用它进行打印。
我有一个小例子可以给我看,它会很棒!
在尝试了几种方法和包之后,我能够通过以下方式取得成功:
注意,我只在 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 )
}
})