Graphics and text can be mixed within one line.
If image data, lying outside the printable area, are input these data are ignored.
Example 10 REM bit image print
20 WIDTH "LPT1:",255
30 FOR i=0 TO 4:
40 LPRINT "Mode: ";STR$(i)
50 LPRINT CHR$(27);"*";CHR$(i);CHR$(254);CHR$(0);
60 FOR j=1 TO 127
70 LPRINT STRING$(1,64+16+4+1);STRING$(1,128+32+8+2);
80 NEXT j
90 LPRINT CHR$(10);CHR$(13)
100 NEXT i
110 END
66 Graphics