├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── LICENSE ├── MacOS └── GIF_Test │ ├── GIF_Test.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── laurencebank.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── laurencebank.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── GIF_Test │ ├── Makefile │ └── main.cpp ├── README.md ├── demo.jpg ├── examples ├── ESP32-LGFX-SDCard-GifPlayer │ ├── ESP32-LGFX-SDCard-GifPlayer.ino │ ├── ReadMe.txt │ └── SD_Content │ │ ├── LICENSE.txt │ │ └── ReadMe.txt ├── ESP32_LEDMatrix_I2S │ └── ESP32_LEDMatrix_I2S.ino ├── NeoPixel_Player │ ├── NeoPixelPlayer.ino │ └── rainbow_5x14.h ├── TFT_eSPI_memory │ ├── GIFDraw.ino │ └── TFT_eSPI_memory.ino ├── TinyPico_Display_GIF │ ├── TinyPico_Display_GIF.ino │ └── homer_small_car.h ├── adafruit_gfx_memory │ └── adafruit_gfx_memory.ino ├── adafruit_gfx_sdcard │ └── adafruit_gfx_sdcard.ino ├── best_practices_example │ └── best_practices_example.ino ├── big_mem_demo │ └── big_mem_demo.ino ├── bitbank_lcd_library │ └── bitbank_lcd_library.ino ├── cyd_cooked_demo │ └── cyd_cooked_demo.ino ├── ez_gif_player │ └── ez_gif_player.ino ├── function_test │ └── function_test.ino ├── gif_animated_digits │ ├── digit_0.h │ ├── digit_1.h │ ├── digit_2.h │ ├── digit_3.h │ ├── digit_4.h │ ├── digit_5.h │ ├── digit_6.h │ ├── digit_7.h │ ├── digit_8.h │ ├── digit_9.h │ └── gif_animated_digits.ino ├── gif_benchmark │ └── gif_benchmark.ino ├── gif_clock │ ├── Roboto_Black_70.h │ ├── gif_clock.ino │ └── loop_clouds_280x240.h ├── gif_from_spi_flash │ ├── PATTERN.GIF │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ ├── ffconf.h │ └── gif_from_spi_flash.ino ├── gif_transparency_demo │ ├── gif_transparency_demo.ino │ └── octocat_4bpp.h ├── oled_gif_demo │ └── oled_gif_demo.ino ├── perf_explained │ ├── matrix_small.h │ └── perf_explained.ino ├── play_all_sd_files │ └── play_all_sd_files.ino ├── turbo_t_qt_example │ └── turbo_t_qt_example.ino └── two_instances │ └── two_instances.ino ├── library.properties ├── linux ├── Makefile └── examples │ ├── gif_on_lcd │ ├── Makefile │ ├── fb_demo.c │ ├── gif_lcd.c │ ├── gif_lcd.cpp │ ├── main.c │ ├── make_fb │ ├── make_lcd │ └── make_lcd_cpp │ └── sdl2_player │ ├── Makefile │ └── main.cpp ├── perf.png ├── src ├── AnimatedGIF.cpp ├── AnimatedGIF.h ├── GIFPlayer.h └── gif.inl └── test_images ├── badgers.h ├── bw_wiggler_128x64.h ├── earth_128x128.h ├── green.h ├── homer.h ├── homer_tiny.h ├── nostromo.h ├── pattern.h ├── thisisfine_240x179.h └── x_wing.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/LICENSE -------------------------------------------------------------------------------- /MacOS/GIF_Test/GIF_Test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/MacOS/GIF_Test/GIF_Test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MacOS/GIF_Test/GIF_Test.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/MacOS/GIF_Test/GIF_Test.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MacOS/GIF_Test/GIF_Test.xcodeproj/project.xcworkspace/xcuserdata/laurencebank.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/MacOS/GIF_Test/GIF_Test.xcodeproj/project.xcworkspace/xcuserdata/laurencebank.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MacOS/GIF_Test/GIF_Test.xcodeproj/xcuserdata/laurencebank.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/MacOS/GIF_Test/GIF_Test.xcodeproj/xcuserdata/laurencebank.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MacOS/GIF_Test/GIF_Test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/MacOS/GIF_Test/GIF_Test/Makefile -------------------------------------------------------------------------------- /MacOS/GIF_Test/GIF_Test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/MacOS/GIF_Test/GIF_Test/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/README.md -------------------------------------------------------------------------------- /demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/demo.jpg -------------------------------------------------------------------------------- /examples/ESP32-LGFX-SDCard-GifPlayer/ESP32-LGFX-SDCard-GifPlayer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/ESP32-LGFX-SDCard-GifPlayer/ESP32-LGFX-SDCard-GifPlayer.ino -------------------------------------------------------------------------------- /examples/ESP32-LGFX-SDCard-GifPlayer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/ESP32-LGFX-SDCard-GifPlayer/ReadMe.txt -------------------------------------------------------------------------------- /examples/ESP32-LGFX-SDCard-GifPlayer/SD_Content/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/ESP32-LGFX-SDCard-GifPlayer/SD_Content/LICENSE.txt -------------------------------------------------------------------------------- /examples/ESP32-LGFX-SDCard-GifPlayer/SD_Content/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/ESP32-LGFX-SDCard-GifPlayer/SD_Content/ReadMe.txt -------------------------------------------------------------------------------- /examples/ESP32_LEDMatrix_I2S/ESP32_LEDMatrix_I2S.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/ESP32_LEDMatrix_I2S/ESP32_LEDMatrix_I2S.ino -------------------------------------------------------------------------------- /examples/NeoPixel_Player/NeoPixelPlayer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/NeoPixel_Player/NeoPixelPlayer.ino -------------------------------------------------------------------------------- /examples/NeoPixel_Player/rainbow_5x14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/NeoPixel_Player/rainbow_5x14.h -------------------------------------------------------------------------------- /examples/TFT_eSPI_memory/GIFDraw.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/TFT_eSPI_memory/GIFDraw.ino -------------------------------------------------------------------------------- /examples/TFT_eSPI_memory/TFT_eSPI_memory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/TFT_eSPI_memory/TFT_eSPI_memory.ino -------------------------------------------------------------------------------- /examples/TinyPico_Display_GIF/TinyPico_Display_GIF.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/TinyPico_Display_GIF/TinyPico_Display_GIF.ino -------------------------------------------------------------------------------- /examples/TinyPico_Display_GIF/homer_small_car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/TinyPico_Display_GIF/homer_small_car.h -------------------------------------------------------------------------------- /examples/adafruit_gfx_memory/adafruit_gfx_memory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/adafruit_gfx_memory/adafruit_gfx_memory.ino -------------------------------------------------------------------------------- /examples/adafruit_gfx_sdcard/adafruit_gfx_sdcard.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/adafruit_gfx_sdcard/adafruit_gfx_sdcard.ino -------------------------------------------------------------------------------- /examples/best_practices_example/best_practices_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/best_practices_example/best_practices_example.ino -------------------------------------------------------------------------------- /examples/big_mem_demo/big_mem_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/big_mem_demo/big_mem_demo.ino -------------------------------------------------------------------------------- /examples/bitbank_lcd_library/bitbank_lcd_library.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/bitbank_lcd_library/bitbank_lcd_library.ino -------------------------------------------------------------------------------- /examples/cyd_cooked_demo/cyd_cooked_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/cyd_cooked_demo/cyd_cooked_demo.ino -------------------------------------------------------------------------------- /examples/ez_gif_player/ez_gif_player.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/ez_gif_player/ez_gif_player.ino -------------------------------------------------------------------------------- /examples/function_test/function_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/function_test/function_test.ino -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_0.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_1.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_2.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_3.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_4.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_5.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_6.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_7.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_8.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/digit_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/digit_9.h -------------------------------------------------------------------------------- /examples/gif_animated_digits/gif_animated_digits.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_animated_digits/gif_animated_digits.ino -------------------------------------------------------------------------------- /examples/gif_benchmark/gif_benchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_benchmark/gif_benchmark.ino -------------------------------------------------------------------------------- /examples/gif_clock/Roboto_Black_70.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_clock/Roboto_Black_70.h -------------------------------------------------------------------------------- /examples/gif_clock/gif_clock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_clock/gif_clock.ino -------------------------------------------------------------------------------- /examples/gif_clock/loop_clouds_280x240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_clock/loop_clouds_280x240.h -------------------------------------------------------------------------------- /examples/gif_from_spi_flash/PATTERN.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_from_spi_flash/PATTERN.GIF -------------------------------------------------------------------------------- /examples/gif_from_spi_flash/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_from_spi_flash/diskio.h -------------------------------------------------------------------------------- /examples/gif_from_spi_flash/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_from_spi_flash/ff.c -------------------------------------------------------------------------------- /examples/gif_from_spi_flash/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_from_spi_flash/ff.h -------------------------------------------------------------------------------- /examples/gif_from_spi_flash/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_from_spi_flash/ffconf.h -------------------------------------------------------------------------------- /examples/gif_from_spi_flash/gif_from_spi_flash.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_from_spi_flash/gif_from_spi_flash.ino -------------------------------------------------------------------------------- /examples/gif_transparency_demo/gif_transparency_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_transparency_demo/gif_transparency_demo.ino -------------------------------------------------------------------------------- /examples/gif_transparency_demo/octocat_4bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/gif_transparency_demo/octocat_4bpp.h -------------------------------------------------------------------------------- /examples/oled_gif_demo/oled_gif_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/oled_gif_demo/oled_gif_demo.ino -------------------------------------------------------------------------------- /examples/perf_explained/matrix_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/perf_explained/matrix_small.h -------------------------------------------------------------------------------- /examples/perf_explained/perf_explained.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/perf_explained/perf_explained.ino -------------------------------------------------------------------------------- /examples/play_all_sd_files/play_all_sd_files.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/play_all_sd_files/play_all_sd_files.ino -------------------------------------------------------------------------------- /examples/turbo_t_qt_example/turbo_t_qt_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/turbo_t_qt_example/turbo_t_qt_example.ino -------------------------------------------------------------------------------- /examples/two_instances/two_instances.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/examples/two_instances/two_instances.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/library.properties -------------------------------------------------------------------------------- /linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/Makefile -------------------------------------------------------------------------------- /linux/examples/gif_on_lcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/gif_on_lcd/Makefile -------------------------------------------------------------------------------- /linux/examples/gif_on_lcd/fb_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/gif_on_lcd/fb_demo.c -------------------------------------------------------------------------------- /linux/examples/gif_on_lcd/gif_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/gif_on_lcd/gif_lcd.c -------------------------------------------------------------------------------- /linux/examples/gif_on_lcd/gif_lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/gif_on_lcd/gif_lcd.cpp -------------------------------------------------------------------------------- /linux/examples/gif_on_lcd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/gif_on_lcd/main.c -------------------------------------------------------------------------------- /linux/examples/gif_on_lcd/make_fb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/gif_on_lcd/make_fb -------------------------------------------------------------------------------- /linux/examples/gif_on_lcd/make_lcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/gif_on_lcd/make_lcd -------------------------------------------------------------------------------- /linux/examples/gif_on_lcd/make_lcd_cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/gif_on_lcd/make_lcd_cpp -------------------------------------------------------------------------------- /linux/examples/sdl2_player/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/sdl2_player/Makefile -------------------------------------------------------------------------------- /linux/examples/sdl2_player/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/linux/examples/sdl2_player/main.cpp -------------------------------------------------------------------------------- /perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/perf.png -------------------------------------------------------------------------------- /src/AnimatedGIF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/src/AnimatedGIF.cpp -------------------------------------------------------------------------------- /src/AnimatedGIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/src/AnimatedGIF.h -------------------------------------------------------------------------------- /src/GIFPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/src/GIFPlayer.h -------------------------------------------------------------------------------- /src/gif.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/src/gif.inl -------------------------------------------------------------------------------- /test_images/badgers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/badgers.h -------------------------------------------------------------------------------- /test_images/bw_wiggler_128x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/bw_wiggler_128x64.h -------------------------------------------------------------------------------- /test_images/earth_128x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/earth_128x128.h -------------------------------------------------------------------------------- /test_images/green.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/green.h -------------------------------------------------------------------------------- /test_images/homer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/homer.h -------------------------------------------------------------------------------- /test_images/homer_tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/homer_tiny.h -------------------------------------------------------------------------------- /test_images/nostromo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/nostromo.h -------------------------------------------------------------------------------- /test_images/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/pattern.h -------------------------------------------------------------------------------- /test_images/thisisfine_240x179.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/thisisfine_240x179.h -------------------------------------------------------------------------------- /test_images/x_wing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbank2/AnimatedGIF/HEAD/test_images/x_wing.h --------------------------------------------------------------------------------