gifdecoder
gifdecoder copied to clipboard
An implementation of a gif decoder written 100% in Kotlin, plus an associated Drawable for Android
Results
2
gifdecoder issues
Sort by
recently updated
recently updated
newest added
Because why not? To create some xmp tags on the gif for testing purposes: https://superuser.com/questions/556315/gif-image-exif-tags
enhancement
Hi, the decode step would cause ArrayIndexOutOfBoundsException sometime ```kotlin private const val MAX_STACK_SIZE = 4096 private val prefix = ShortArray(MAX_STACK_SIZE) fun decode(imageData: ByteArray, destination: ByteArray, pixelCount: Int) { val lzwMinimumCodeSize...