npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

printer_server

v1.1.1

Published

PrinterService是一个用于与打印机进行交互的服务类,它提供了一系列方法来控制打印机的操作,包括打开打印机、设置打印参数、打印文字和条形码以及开始打印等功能。它主要使用了tscLib库来与打印机进行底层通信,并结合了其他相关的工具库如iconv-lite

Downloads

583

Readme

概述

PrinterService是一个用于与打印机进行交互的服务类,它提供了一系列方法来控制打印机的操作,包括打开打印机、设置打印参数、打印文字和条形码以及开始打印等功能。它主要使用了tscLib库来与打印机进行底层通信,并结合了其他相关的工具库如iconv-lite

安装与依赖

依赖安装

  • 确保已经安装了@nestjs/common模块,这是 Nest.js 框架的核心模块之一,用于提供基础的依赖注入和其他通用功能。
  • 安装iconv-lite模块,用于字符编码转换。可以通过运行npm install iconv-lite进行安装。
  • 本地的tscLib库:需要确保../dll/tscLib这个路径下的tscLib库文件存在且正确配置。它可能是一个自定义的与打印机通信的动态链接库或相关模块的封装。

使用方法

打开打印机

openport()

  • 功能:
  •  打开打印机并清除上次打印缓存。
  • 参数:
  •  name(字符串):打印机型号,例如"Gprinter GP-3120TL"。
  • 返回值:
  •  返回1表示成功打开打印机并设置参数,返回0表示失败。
  • 示例用法:
async function openPrinter() {
  const result = await printerService.openport('YourPrinterModel');
  if (result === 1) {
    console.log('打印机已打开并设置参数成功');
  } else {
    console.log('打开打印机失败');
  }
}

打印一行文字

lineFormat()

  • 功能:
  •  用于在指定的坐标位置打印一行文字。文字内容会先进行字符编码转换为GB18030格式,然后发送到打印机进行打印。
  • 参数:
  • xPoint(数字):文字在 X 轴方向的起始点坐标。
  • yPoint(数字):文字在 Y 轴方向的起始点坐标。
  • printWord(字符串):要打印的文字内容。
  • 示例用法:
 async function printLine() {
   await printerService.lineFormat(100, 200, '这是要打印的一行文字');
 }

打印条形码

printeCode()

  • 功能:
  •  使用打印机内置的条形码打印功能来打印条形码。
  • 参数:
  • xPoint(数字):条形码在 X 轴方向的起始点坐标。
  • yPoint(数字):条形码在 Y 轴方向的起始点坐标。
  • type(字符串):条形码类型,如"128"(代表 Code 128,自动切换代码子集 A、B、C)等,具体可参考方法注释中的详细说明。
  • height(数字):条形码的高度设置。
  • codeString(数字):设置是否打印条形码码文,0表示不打印,1表示打印。
  • rotation(数字):条形码的旋转角度,0表示 0 度,90表示 90 度,以此类推。
  • code(字符串):条形码的内容。
  • 示例用法:
    async function printBarcode() {
   await printerService.printeCode(50, 100, '128', 50, 1, 180, '123456789');
 }

开始打印

startPrint()

  • 功能:
  •  排版文字完成后开始打印标签,并在打印完成后关闭打印机端口。
  • 返回值:
  • 返回一个 Promise,resolve 时的值为'打印成功'。
  • 示例用法:
   async function startPrinting() {
   try {
     const result = await printerService.startPrint();
     console.log(result);
   } catch (error) {
     console.error('打印过程中出现错误:', error);
   }
 }

注意事项

  • 确保正确配置打印机型号和相关参数。不同的打印机型号可能对参数的支持和要求有所不同,需要根据实际使用的打印机进行调整。
  • 在使用barcode和sendBinaryData等方法时,要确保传入的参数格式和类型正确,以避免打印错误或异常。
  • 注意字符编码的问题,特别是在处理中文字符时,确保使用正确的编码格式(如GB18030)进行转换,以保证文字能正确显示在打印输出上。
  • 在实际应用中,要合理处理错误情况,例如在openport方法返回0时,以及其他方法可能出现的异常情况,及时向用户反馈错误信息并采取适当的措施进行处理。