Areas of use, 1 using word processing packages and spreadsheets, 2 graphics – Brother HL-2170W User Manual
Page 18: 3 programming, Using word processing packages and spreadsheets, Graphics, Programming
CHAPTER 1 INTRODUCTION - 4
2.
AREAS OF USE
There are several different applications for which you may want to use your HL-Series printer. Four general
areas are outlined in the following sections.
2.1
Using Word Processing Packages and Spreadsheets
You may simply wish to use the printer with your software application packages, such as word-processors or
spreadsheets. Many software packages automatically send commands to the printer requesting particular type
styles, character sizes and specifying page set-up information and other relevant data. In this case you will
not need to use this manual, as your software package will perform the task of controlling the printer for you.
Other packages allow you to embed software commands within your word-processed or spreadsheet
documents. This manual describes the commands you need, and you can simply include them in the form
that your package requires. In either case, read the documentation that came with your software to find out
its own specific requirements for driving a printer.
2.2
Graphics
HP-GL/2 or HP-GL mode offers many powerful graphic features that enable you to draw and print detailed
images quickly and easily. Many commercial graphic packages, notably computer-aided design applications
programs, produce HP-GL/2 or HP-GL output. LaserJet mode also has several graphics features. You can
either write your own programs to generate images or use existing graphics software.
2.3
Programming
If you are writing software, for example in BASIC or C, to drive the printer, the description and formal
specification of each command will enable you to transcribe them straight into your programs. Below is a
simple example of a program to draw and print a three inch black square. The program is given in both C and
BASIC.
C language program
#include
main()
{
FILE *prn; /* initialization section */
prn = fopen("PRN","wb");
fprintf(prn,"\33E"); /* Esc E - Reset the printer */
fprintf(prn,"\33%0B"); /* Esc%0B - Enter HP-GL/2 */
fprintf(prn,"IN"); /* Initialize */
fprintf(prn,"SP1PA1024,1024"); /* Select pen 1 & move to 0,0 */
fprintf(prn,"PDFT1RA4096,4096"); /* Draw 3" solid square */
fprintf(prn,"\33%0A"); /* Quit HP-GL/2 & restore original cursor
position */
fprintf(prn,"\33E /* Reset and eject page */
}
BASIC language program
10 LPRINT CHR$(27);"E"; :REM Esc E - Reset the printer
20 LPRINT CHR$(27);"%0B"; :REM Esc%0B - Enter HP-GL/2
30 LPRINT "IN"; :REM Initialize
40 LPRINT "SP1PA1024,1024"; :REM Select pen 1 & move to 0,0
50 LPRINT "PDFT1RA4096,4096"; :REM Draw 3" solid square
60 LPRINT CHR$(27);"%0A"; :REM Quit HP-GL/2 & restore original cursor
position
70 LPRINT CHR$(27);"E"; :REM Reset and eject page
- HL-1670N HL-6050D HL 5250DN HL-5070N HL-2460 HL-6050DN HL-2150N HL 2700CN HL-2130 HL-S7000DN HL-3040CN HL 1650 HL-6050 HL-5240 HL-5240L HL-1470N HL 3070CW HL 5170DN HL-3450CN HL-3140CW HL 5470DW HL-5140 HL-5440D HL-7050 HL-2240 HL-5040 HL-4070CDW HL-1870N HL-1110 HL-1850 HL 4150CDN HL-8050N HL 5450DN HL 5370DW HL-5050 HL-2140 HL 1270N HL-2600CN HL-6180DW HL-5350DN HL-4050CDN HL-2070N HL-3260N HL-5150D HL-5280DW HL-3170CDW HL-4570CDW HL-3150CDW HL 4040CN HL-4140CN HL 2240D HL 2270DW HL-1250 HL-7050N HL 5340D HL-2250DN HL-1450 HL-L9200CDWT HL-1112 HL-5270DN HL-5450DNT HL-L8250CDN HL 4570CDWT HL-5380DN HL-6180DWT HL-L8350CDW HL-4040CDN HL-L8350CDWT HL-2230 HL-5470DWT HL 2220 HL-1110E HL-1112E