├── .gitignore ├── Assets ├── images │ ├── anim1.gif │ └── anim2.gif └── openfl.svg ├── HaxeGifSample.hxproj ├── LICENSE.md ├── README.md ├── Source ├── Main.hx ├── buildPackage.sh ├── gif │ ├── AnimatedGif.hx │ ├── bytes │ │ ├── BitReader.hx │ │ ├── BitWriter.hx │ │ ├── Bits.hx │ │ ├── BytesInputWrapper.hx │ │ └── Inflater.hx │ ├── color │ │ ├── Rgb.hx │ │ └── Rgba.hx │ └── images │ │ ├── GifDecoder.hx │ │ ├── GifFrameInfo.hx │ │ └── GifInfo.hx ├── haxelib.json └── installPackage.sh ├── TODO.txt └── project.xml /.gitignore: -------------------------------------------------------------------------------- 1 | Export 2 | Source/*.zip 3 | -------------------------------------------------------------------------------- /Assets/images/anim1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Assets/images/anim1.gif -------------------------------------------------------------------------------- /Assets/images/anim2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Assets/images/anim2.gif -------------------------------------------------------------------------------- /Assets/openfl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Assets/openfl.svg -------------------------------------------------------------------------------- /HaxeGifSample.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/HaxeGifSample.hxproj -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/README.md -------------------------------------------------------------------------------- /Source/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/Main.hx -------------------------------------------------------------------------------- /Source/buildPackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/buildPackage.sh -------------------------------------------------------------------------------- /Source/gif/AnimatedGif.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/AnimatedGif.hx -------------------------------------------------------------------------------- /Source/gif/bytes/BitReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/bytes/BitReader.hx -------------------------------------------------------------------------------- /Source/gif/bytes/BitWriter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/bytes/BitWriter.hx -------------------------------------------------------------------------------- /Source/gif/bytes/Bits.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/bytes/Bits.hx -------------------------------------------------------------------------------- /Source/gif/bytes/BytesInputWrapper.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/bytes/BytesInputWrapper.hx -------------------------------------------------------------------------------- /Source/gif/bytes/Inflater.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/bytes/Inflater.hx -------------------------------------------------------------------------------- /Source/gif/color/Rgb.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/color/Rgb.hx -------------------------------------------------------------------------------- /Source/gif/color/Rgba.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/color/Rgba.hx -------------------------------------------------------------------------------- /Source/gif/images/GifDecoder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/images/GifDecoder.hx -------------------------------------------------------------------------------- /Source/gif/images/GifFrameInfo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/images/GifFrameInfo.hx -------------------------------------------------------------------------------- /Source/gif/images/GifInfo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/gif/images/GifInfo.hx -------------------------------------------------------------------------------- /Source/haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/haxelib.json -------------------------------------------------------------------------------- /Source/installPackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/Source/installPackage.sh -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- 1 | Fix error at the end of some Gif Files -------------------------------------------------------------------------------- /project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SempaiGames/haxe-gif/HEAD/project.xml --------------------------------------------------------------------------------