I am creating a custom compressed bitmap font (class 2) and I need some clarification as to how the character data is represented.
Assuming the following character:
width - 8
height - 8
binary character data:
After compression, the character data should be the following string, correct?
(Values are decimal)
If the above string is correct, how should it be represented in the PCL file?
Is it just the ASCII character that corresponds with the ordinal value of each byte in the string?
e.g.:
Thank you for your time
Assuming the following character:
width - 8
height - 8
binary character data:
Code:
01000001
01000001
01000001
01000001
01000001
01000001
01000001
01000001
(Values are decimal)
Code:
8 1 1 5 1
If the above string is correct, how should it be represented in the PCL file?
Is it just the ASCII character that corresponds with the ordinal value of each byte in the string?
e.g.:
Code:
char(8).char(1).char(1).char(5).char(1)
Thank you for your time