.name
ZGIFDataType
.type
Datatype
.aminet-dir
util/dtype
.short
Fast datatype for displaying GIF files.
.description
A very fast GIF Datatype

 Main features:

    o	SPEED.  Try it, after using this you wont want to be without it!
    o	Supports most gifs (only some esoteric, and mostly unused features
    	of the GIF8?a standard have been ignored)
    o	Uses async file reading for greater performance - on an A1200 will
	load a picture the same speed off of floppy as off of hard drive!
    o	100% Assembly language, very optimised.
    o	Custom chunky to planar conversion, that is reasonably fast 
        (a version using WritePixelLine8() runs about 50% the speed of 
        this version)
    o	Now works with all 68000 series CPU's (i hope)
    o	Now supports transparent gifs ('copy' a transparent gif from
        multiview and then paste it as a bruch in DPaint - NEAT eh?)
    o	Its FREE! (this is of course the best bit)


Main limitations: (hey, its not _perfect_ after all)

    o	OM_WRITE BOOPSI method not yet implemented.  Expect this in a future
    	release.
    o	Only decodes pictures with a global colour table.  Most gif loaders
    	do the same, and most writers write them.
    o	Ignores any local colour tables (but still decodes picture).  Could
    	lead to a bad palette.
.version
39.16
.author
Michael Zucchi
.requirements
OS 3.x
.reference
FreshFish-Vol9-1:Useful/util/dtype/ZGIFDataType/
39.13
FreshFish-Vol8-1:New/util/dtype/ZGIFDataType/
39.7
FreshFish-Vol1:New/OS30/ZGIFDataType/
39.3
.distribution
Freeware
.email
zucchi@zedzone.apana.org.au (at home)
zucchi@box.apana.org.au
9107047w@lux.levels.unisa.edu.au (till end of '95) (at work)
.address
PO box 824
Waikerie SA 5330	<- SA = South Australia
.docs
ZGIFDataType.Doc
.described-by
Dan Fish (daf@daffy.amigalib.com)
.submittal
Downloaded via ftp from wuarchive.wustl.edu.
.execute
LAB Start
set choice `RequestChoice "ZGIF DataType" "Please select an option" "View ReadMe" "View Guide" "Cancel"`
if $choice GT "0"
  if $choice EQ "1"
    MetaTool ZGIFDT39.16.readme TEXT
  else
    if $choice EQ "2"
      MetaTool ZGIFDatatype.Doc TEXT
    endif
  endif
  skip Start BACK
endif
