Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7 173
Chapter 2 Program Instructions
NORIMAGE (NI)
Field of Application
Statement for returning to normal printing after an INVIMAGE
statement has been issued.
Syntax NORIMAGE | NI
Remarks
Normal image is the default type of printing and means that text and images
will be printed in black-on-white.
Using an INVIMAGE statement, the printing of text and images can
be inversed. Such inverse printing will be discontinued for all PRTXT
and PRIMAGE statements that follows the encounter of a NORIMAGE
statement.
Example
In this example, the fi rst line is printed in inversed fashion and the second
line in the normal fashion:
10 PRPOS 30,300
20 ALIGN 4
30 INVIMAGE
40 FONT "Swiss 721 BT"
50 PRTXT "INVERSE PRINTING"
60 PRPOS 30, 200
70 NORIMAGE
80 PRTXT "NORMAL PRINTING"
90 PRINTFEED
RUN