|
| 23 Apr |
|
| 2 Jul |
|
| 18 May |
|
| 27 Jan |
|
| 17 Jan |
|
| 17 Jan |
|
| 17 Jan |
|
| 17 Jan |
|
| 12 Oct |
|
| 5 Oct |
|
IntroductionUsing Barcode Writer in Pure PostScript requires a tiny bit of PostScript knowledge, but not much. If you do not want to get your hands messy playing with PostScript then you should instead use one of the project's frontends which hide much 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://www.terryburton.co.uk/barcodewriter/files/postscriptbarcode/ 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 barcode The meaning of each componant of the invokation 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 % instruction to generate the symbol data structure barcode % instruction to plot the data structure 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 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 are 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.
To directly print a file to a PostScript enabled printer in Windows use the following command: PRINT [/D:device] barcode_with_sample.ps Alternatively for a printer attached 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 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:
|
|
| Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy |
| ©2008 Google |