Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save facilita-tecnologia/bb6bd868e607c4dc2e15fc21f0a69df9 to your computer and use it in GitHub Desktop.
Save facilita-tecnologia/bb6bd868e607c4dc2e15fc21f0a69df9 to your computer and use it in GitHub Desktop.
Codificação Fontes
byte[] cc = new byte[]{0x1B,0x21,0x00}; // 0- normal size text
byte[] bb = new byte[]{0x1B,0x21,0x08}; // 1- only bold text
byte[] bb2 = new byte[]{0x1B,0x21,0x20}; // 2- bold with medium text
byte[] bb3 = new byte[]{0x1B,0x21,0x10}; // 3- bold with large text
outputStream.write(cc);
outputStream.write("Your String");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment