That's it! Some notes:{ ## tinygif ## World's Smallest Gif ## 35 bytes, 43 if transparent use strict; my($RED,$GREEN,$BLUE,$GHOST,$CGI); ## Adjust the colors here, from 0-255 $RED = 255; $GREEN = 0; $BLUE = 0; ## Set $GHOST to 1 for a transparent gif, 0 for normal $GHOST = 0; ## Set $CGI to 1 if writing to a web browser, 0 if not $CGI = 0; $CGI && printf "Content-Length: %d\nContent-Type: image/gif\n\n", $GHOST?43:35; printf "GIF89a\1\0\1\0%c\0\0%c%c%c\0\0\0%s,\0\0\0\0\1\0\1\0\0%c%c%c\1\ +0;", 144,$RED,$GREEN,$BLUE,$GHOST?pack("c8",33,249,4,5,16,0,0,0):"",2,2,4 +; }
|
---|
Replies are listed 'Best First'. | |
---|---|
RE: World's Smallest Gif
by turnstep (Parson) on Apr 19, 2000 at 18:47 UTC | |
by Anonymous Monk on Mar 06, 2002 at 16:38 UTC | |
RE: World's Smallest Gif
by providencia (Pilgrim) on Apr 21, 2000 at 19:17 UTC | |
RE: World's Smallest Gif
by Chris (Novice) on Apr 21, 2000 at 23:54 UTC | |
Re: World's Smallest Gif
by Dominus (Parson) on Dec 29, 2000 at 11:37 UTC | |
by extremely (Priest) on Dec 29, 2000 at 14:36 UTC | |
by Dominus (Parson) on Dec 29, 2000 at 21:18 UTC | |
Re: World's Smallest Gif
by extremely (Priest) on Dec 29, 2000 at 14:39 UTC | |
RE: World's Smallest Gif
by Simplicus (Monk) on Apr 20, 2000 at 20:36 UTC | |
Re: World's Smallest Gif
by Anonymous Monk on Jun 24, 2011 at 19:10 UTC | |
Re: World's Smallest Gif
by Anonymous Monk on Jun 14, 2002 at 17:13 UTC | |
by turnstep (Parson) on Jun 26, 2002 at 15:31 UTC |