home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / fish / disks / d1104.lha / Programs / Image2C / Product-Info < prev    next >
Text File  |  1995-08-25  |  967b  |  39 lines

  1. .name
  2. Image2C
  3. .fullname
  4. Image to C Converter
  5. .aminet-dir
  6. gfx/conv
  7. .short
  8. Convert IFF images to C code
  9. .description
  10. Source (and binary) to a tool to convert IFF images to 'C' code for
  11. use in DrawImage(); generates all structures necessary to create
  12. gadgets with this imagery, including LoadRGB32() palette tables, and
  13. struct Gadget, struct Image, etc.  Source code demonstrates the use of
  14. iffparse.library to extract BMHD information, AUTH, BODY, etc. chunks.
  15. Flexible structure base-names from the command line.
  16. .version
  17. 1.2
  18. .author
  19. Udo Schuermann
  20. .submittal
  21. Submitted directly by author via ftp.
  22. .described-by
  23. Fred Fish (fnf@amigalib.com)
  24. .source
  25. Includes source in C.
  26. .execute
  27. LAB start
  28. set choice `RequestChoice "Image to C Converter" "Please select an option" "Documentation" "View Source" "Cancel"`
  29. if $choice GT "0"
  30.   if $choice EQ "1"
  31.     MetaTool i2c.doc TEXT
  32.   else
  33.     if $choice EQ "2"
  34.       MetaTool i2c.c SOURCE
  35.     endif
  36.   endif
  37.   skip start BACK
  38. endif
  39.