Graphics
Individual graphics commandsThere are four individual graphics commands that are very much the same as the ESC * command, but each one works for only one graphics option. Note that these commands contain one less variable than the ESC * command because they do not need to select a graphics option.
They are shown below:
Command | Function | ESC * Format |
|
|
|
ESC K | ESC * 0 | |
ESC L | ESC * 1 | |
ESC Y | ESC * 2 | |
ESC Z | ESC * 3 | |
|
|
|
The
The command looks like this:
ESC ? s m
The letter s represents the command that you wish to change the assignment for (K, L, Y, or Z) and m is the number of the graphics option that you want to assign to it. For example, to change the ESC K command to use the CRT I graphics option, the command in BASIC is;
LPRINT CHR$(27);“?“;“K”;CHR$(4)
This is a quick way to change the aspect ratio of the design that you are printing. Changing the graphics option will change the width without changing the height.