Dil ID: 10
Dil Adı: spain
Dil Kodu: es7tayfun Productos de la Marca Datamax O'Neil
Dünyanın En Büyük
Elektronik Bilgi Kütüphanesi



Example 9
So far, all of our examples have contained only one field. Most pri
nt jobs are much more complex and contain multiple
fields. To include multiple fields in a single print job, simple add additional fields after the PRINT command and before the
closing brace. The fields can be listed in any row order, the printer will wait until it receives all data before forming the
image and printing. Before it begins, the printer will re-order the data so it is printed in proper sequence. For example,
the following print job will print a box with the word “HI!” inside. The line fields use both the long form of the LENGTH and
THICK as well as the short form. The HI! Is multiplied by 4 in both the horizontal and vertical direction to give large
characters. A global STOP parameter is used to stop printing at approximately 2” (400 dotlines). And the image is printed
in landscape mode (ROT270).
ESC EZ
{PRINT, STOP 400, ROT270:
@60,40:HLINE,L205,T3|
@60,40:VLINE,LENGTH 215,THICK3|
@60,245:VLINE,LENGTH 215,T3|
@274,40:HLINE,L205,THICK3|
@120,100:MF185,HMULT 4, VMULT 4|HI!|
}
Example 10_
As one final example, the following label shows how a moderately complex label
might be put together. This uses several
fonts as well as global and field rotation.
ESC EZ
{PRINT,ROT270:
@400,100:MF226|Me and My Company 123 MAIN STREET STE 100|
@412,200:MB113|0821|
@425,100:MF226|Pharmacy IRVINE, CA 92618|
@455,40:MF226|Fill Date: 01/26/05 Rx NO.. 28901 Dr. OnCall|
@485,40:MF204|Speedy Gonzalez|
@515,40:MF185|TAKE 4 TABLETS TWO TIMES A DAY.|
@570,40:MF185|CEFTIN 500MG TABLET BY HASBRO|
@600,40:MF226|Substitued for : CEFRINE 500MG TABLET|
@625,330:PT06H|000298-3137-01|
@660,40:MF204|Orig.|
@672,110:MF185|01/25/06|
@690,40:MF204|Date Refill 1 Qty.24 rph naj|
@720,40:MF204|Phone: (210) 490-2240|
@755,40:PT06H|CAUTION: FEDERAL LAW PROHIBITS THE TRANSFER OF
THIS DRUG TO|
@775,40:PT06H|ANY PERSON OTHER THAN FOR WHOM IT WAS PRESCRI
BED.|
@730,530:BC39N,WIDE 2, HIGH 13,ROT90|BARCODES|
}