home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 3
/
goldfish_volume_3.bin
/
files
/
gfx
/
misc
/
getilbm
/
product-info
< prev
next >
Wrap
Fred Fish's Product-Info
|
1995-10-10
|
1KB
|
54 lines
.name
GetILBM
.type
Image Processing
.short
2 functions for loading IFF ILBM files.
.description
Here are two AGA-compatible functions for loading IFF ILBM files,
carefully distilled from that mess of code in the back of RKM:Devices
or Developer's Toolkit. AGA supported! This module requires
iffparse.library to be in your libs: directory.
LoadILBMBitMap() loads an ILBM file into a BitMap, returning the Bitmap
pointer. Free the BitMap with freeBitMap().
LoadILBMScreen() loads an ILBM file into a Screen, returning the Screen
pointer. Display the screen with ScreenToFront(), free it with
freeilbmScreen().
The executable file getilbm is a demo picture viewer.
See the beginning of getilbm.c for complete documentation.
.author
Alex Matulich
.distribution
Public Domain
.email
matulich_a@seaa.navsea.navy.mil
.source
C source included
.docs
README
getilbm.c
.described-by
Richard Fish
.submittal
Submitted on disk directly by the author.
.aminet-dir
gfx/misc
.execute
set choice `RequestChoice "GetILBM" "Please select an option" "View Readme" "View Source" "Cancel"`
if $choice EQ "0"
quit 5
endif
if $choice EQ "1"
MetaTool README TEXT
endif
if $choice EQ "2"
MetaTool getilbm.c SOURCE
endif