Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can not print thai character #70

Open
chukiatt opened this issue Mar 24, 2022 · 3 comments
Open

Can not print thai character #70

chukiatt opened this issue Mar 24, 2022 · 3 comments

Comments

@chukiatt
Copy link

chukiatt commented Mar 24, 2022

Dear sir,

I would like to ask you to help I can't print Thai.

let _encoder = encoder
.initialize()
.codepage('cp874')
.line('ข้าวผัดของไทยอร่อยที่สุดครับ')
.encode();

Thank you very much.

@NielsLeenheer
Copy link
Owner

Whether or not a particular codepage works depends a lot on the model of the printer. Some printers do not support all codepages, and some manufacturers use different codepage mappings. The upcoming version 2 should have better support for different codepage mappings.

Which printer are you using?

@saknarak
Copy link

example code for Thai

const encoder = new EscPosEncoder({
  codepageMapping: {
    cp437: 0x00,
    shiftjis: 0x01,
    cp850: 0x02,
    cp860: 0x03,
    cp863: 0x04,
    cp865: 0x05,
    cp851: 0x0b,
    cp853: 0x0c,
    cp857: 0x0d,
    cp737: 0x0e,
    iso88597: 0x0f,
    windows1252: 0x10,
    cp866: 0x11,
    cp852: 0x12,
    cp858: 0x13,
    cp874: 0x16, // 22, for Thai with EPSON that sold in Thai
    cp720: 0x20,
    cp775: 0x21,
    cp855: 0x22,
    cp861: 0x23,
    cp862: 0x24,
    cp864: 0x25,
    cp869: 0x26,
    iso88592: 0x27,
    iso885915: 0x28,
    cp1098: 0x29,
    cp1118: 0x2a,
    cp1119: 0x2b,
    cp1125: 0x2c,
    windows1250: 0x2d,
    windows1251: 0x2e,
    windows1253: 0x2f,
    windows1254: 0x30,
    windows1255: 0x31,
    windows1256: 0x32,
    windows1257: 0x33,
    windows1258: 0x34,
    rk1048: 0x35,
  },
})

encoder
    .initialize()
    .codepage('cp874')
    .line('ทดสอบภาษาไทย')
    .encode()

@chukiatt
Copy link
Author

are you tested.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants