home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 3 / chip_20018103_hu.iso / amiga / chiputil / millibar.rea < prev    next >
Text File  |  2001-07-02  |  1KB  |  62 lines

  1. Short:    Millibar Barcode Library v 0.1
  2. Author:   Stefan Popp
  3. Uploader: stefan.popp@gmx.de ( Stefan Popp )
  4. Type:     dev/c
  5.  
  6.  
  7. This library draws a barcode on a screen or window. In this Version
  8. only CODABAR is supported.
  9.  
  10. The library is FREEWARE.
  11.  
  12. I have uses StormC 3.0 to compile this version. I don`t know if
  13. it will work with gcc ( Maybe you`ll need to change the header files)
  14.  
  15. Todo:
  16.  
  17. - function to write a barcode directly to file
  18. - other barcode-types
  19. - ......
  20.  
  21.  
  22. Stefan Popp
  23. stefan.popp@gmx.de
  24. http://members.tripod/stpopp
  25.  
  26.  
  27. Function(s):
  28. ------------
  29.  
  30. int mbc_draw_code_e ( MBC_PAR *par);
  31.                          A0
  32.  
  33.  
  34. Parameters:
  35.  
  36. typedef struct mbcpar {
  37.  
  38.         Rastport *rp; /* Rastport of screen or window where
  39.                          the barcode should be painted.     */
  40.  
  41.         int      *code; /* Pointer to a NULL-terminated string
  42.                            with the barcode-string */
  43.  
  44.         int      codetype; /* Type of code. In this version only
  45.                              codabar is supported */
  46.  
  47.         int      xpos;     /* x-position for the barcode  */
  48.  
  49.         int      ypos;     /* y-position for the barcode  */
  50.  
  51.         int      xscale;   /* x-scaling for barcode       */
  52.  
  53.         int      yscale;   /* length of lines in pixel    */
  54.  
  55.         int      drawmode; /* not used */
  56.  
  57.  
  58. } MBC_PAR;
  59.  
  60.  
  61. Current font and color will be used.
  62.