Giter Club home page Giter Club logo

Comments (4)

alanzhaonys avatar alanzhaonys commented on May 13, 2024

Hi, your printer needs to support Chinese character.

from node-thermal-printer.

jevy-wangfei avatar jevy-wangfei commented on May 13, 2024

I want to print chinese but print out the Garbled.
English Is OK.

this is my code:

var printers = require("node-thermal-printer");
printers.init({
type: 'epson',
interface: 'printer:' + printer.getPrinters()[0].name,
characterSet:'CHINA'
});
printers.alignCenter();
printers.println(iconv.encode('--------测试打印----------','GBK'));
printers.println(iconv.encode('--------测试打印----------','UTF-8'));
printers.println('--------测试打印----------');
printers.println('hello');

printers.execute( function(err){
console.dir(err);
});

Hi,

Did you resolve the problem? I have the same problem, and I pretty sure that my printer char code setting is Chinese(BIG5).

Yours' Jevy Wang

from node-thermal-printer.

qjdice avatar qjdice commented on May 13, 2024

I want to print chinese but print out the Garbled.
English Is OK.
this is my code:
var printers = require("node-thermal-printer");
printers.init({
type: 'epson',
interface: 'printer:' + printer.getPrinters()[0].name,
characterSet:'CHINA'
});
printers.alignCenter();
printers.println(iconv.encode('--------测试打印----------','GBK'));
printers.println(iconv.encode('--------测试打印----------','UTF-8'));
printers.println('--------测试打印----------');
printers.println('hello');
printers.execute( function(err){
console.dir(err);
});

Hi,

Did you resolve the problem? I have the same problem, and I pretty sure that my printer char code setting is Chinese(BIG5).

Yours' Jevy Wang

I modified the source code need a iconv-lite module
add code to node-thermal-printer/lib/core.js

   var fs = require('fs'),
    net = require("net"),
    PNG = require('pngjs').PNG,
    star = require('./star'),
    epson = require('./epson'),
    getInterface = require("../interfaces"),
    iconv = require('iconv-lite');

and println:function(){}

  println: function(text,isGbk){
    if(isGbk){
      append(iconv.encode(text,'GBK'))
    }else{
      append(text.toString());
    }
    append("\n");
  },

used

 var printer = require("node-thermal-printer");
 printer.init({
		  type: 'epson',
		  interface: printname,
		});
printer.println('测试打印中文',true);

from node-thermal-printer.

jevy-wangfei avatar jevy-wangfei commented on May 13, 2024

I want to print chinese but print out the Garbled.
English Is OK.
this is my code:
var printers = require("node-thermal-printer");
printers.init({
type: 'epson',
interface: 'printer:' + printer.getPrinters()[0].name,
characterSet:'CHINA'
});
printers.alignCenter();
printers.println(iconv.encode('--------测试打印----------','GBK'));
printers.println(iconv.encode('--------测试打印----------','UTF-8'));
printers.println('--------测试打印----------');
printers.println('hello');
printers.execute( function(err){
console.dir(err);
});

Hi,
Did you resolve the problem? I have the same problem, and I pretty sure that my printer char code setting is Chinese(BIG5).
Yours' Jevy Wang

I modified the source code need a iconv-lite module
add code to node-thermal-printer/lib/core.js

   var fs = require('fs'),
    net = require("net"),
    PNG = require('pngjs').PNG,
    star = require('./star'),
    epson = require('./epson'),
    getInterface = require("../interfaces"),
    iconv = require('iconv-lite');

and println:function(){}

  println: function(text,isGbk){
    if(isGbk){
      append(iconv.encode(text,'GBK'))
    }else{
      append(text.toString());
    }
    append("\n");
  },

used

 var printer = require("node-thermal-printer");
 printer.init({
		  type: 'epson',
		  interface: printname,
		});
printer.println('测试打印中文',true);

Hi,
Thank you very much for your replay.

Which printer did you use? I tried on POS-8220, and set the charset to GB18030, and it still print mess code.

I'm wondering it is caused by printer.

Do you have any other idea which could resolve the mess code problem?

Thanks you very much.

from node-thermal-printer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.