I have not seen such a DLL, but I have written programs for small printers. I used the standard fonts of the printers. I found the explanations I needed in the programming manuals that I could donwload for free from the web sites of the constructors. These printers have their own languages. I saw ZPL and EPL. You write lines of comands in a file, and then send the file to the printer via FTP or another way. Here is a commented example in EPL:
Code:
; Set label width in dots
q812
; Select print speed 50mm/s (medium speed) 1is low speed, 4 is high speed.
S2
; Enable direct thermal mode
OD
; Enable top of form backup
JF
; Disable Windows command mode
WN
; Printing from top of image buffer
ZT
; Set form length 1218 with a gap of 25
Q1218,25
; Clear image buffer
N
; Select font 8-bit, first resident font
I8,1
; Define the location, font, and string of characters to be printed
; Ax,y,rotation,fontsize(1-5),hmulti(1-6),vmulti(1-9),
; reverse(N=normal),"text"(in quotes)
A50,62,0,5,1,1,N,"Test Ascii text"
; Print
P1
Bookmarks