Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
munir ishak 82a87c33ce update package details il y a 4 ans
.gitignore initial commit il y a 4 ans
README.md initial commit il y a 4 ans
buffer-helper.js initial commit il y a 4 ans
index.js add image tag il y a 4 ans
package-lock.json initial commit il y a 4 ans
package.json update package details il y a 4 ans

README.md

escpos-printer-toolkit

A printer command toolkit for translate text to ESC/POS command.

e.g. Text “这是一段打印测试文字“

will be translate to esc/pos command with the text align center.

Installation

npm install escpos-printer-toolkit --save

Usage

import EPToolkit from 'escpos-printer-toolkit';
let options = {
  beep: true, 
  cut: true, 
  tailingLine: true,
  encoding: 'GBK'
}
EPToolkit.exchange_text("<C>这是一段打印测试文字</C>", options)