|
QuickGuide
IntroductionUsing Barcode Writer in Pure PostScript requires only some basic PostScript knowledge that is easily learned by experimentation. If you do not want to get your hands messy playing with PostScript then you can instead use one of the project's frontends which hide many of the details. First StepsThe best way to get familiar with using the code is to download the barcode_with_sample.ps file from http://postscriptbarcode.googlecode.com/svn/trunk/ and open this with a text editor. This file consists of the following sections:
This is one example from the samples: 150 750 moveto (0123456789) (includecheck includetext) /interleaved2of5 /uk.co.terryburton.bwipp findresource exec The meaning of each component of the invocation is as follows: 150 750 moveto % defines the position on the canvas for the symbol (0123456789) % the data field containing the information to encode (includetext height=0.75) % the options field defining features of the symbol /interleaved2of5 % the name of the barcode type /uk.co.terryburton.bwipp findresource exec % plot the symbol on the canvas The acceptable contents of the data field varies from symbology to symbology as defined in the symbologies reference. The acceptable contents of the options field is for the most part common accross all of the symbologies as defined in the options reference, however encoder specific options do exist in some cases and the default values of omitted options varies accross symbologies. Using the references mentioned above you should now be able to experiment by carefully amending the sample section of the file. You will want to view the result of your changes regularly (since bugs may be hard to track down once introduced) either by using a software PostScript interpretter alongside a viewer or by sending the file to a PostScript enabled printer. Alternatively you can use the web-based generator to see the effect of the options on the output.
To directly print a file to an installed, PostScript enabled printer in Windows use the following command: PRINT [/D:device] barcode_with_sample.ps Alternatively for a printer attached directly to the first parallel port: COPY /B barcode_with_sample.ps LPT1: To directly print a file to a PostScript enabled printer in Linux use the following command: lpr -Pdevice -o raw barcode_with_sample.ps Once you are comfortable with amending the barcode_with_sample.ps file you may want to simplify the file bearing in mind the following points:
| |