Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.
I need a LZW Decompressor, for finishing my GIF player script. The best thing will be a ruby LZW Decompressor, or an easy translatable script in other languages. Maybe, a how LZW decompressor works guide, or something similar to that, will be good too.
The problem is, given that LZW was patent-protected (well, in the USA, at least), it wasn't included in ruby. You have Zlib instead, which is what gzip/png is based on, thus enabling rmxp to work with pngs.
The problem is, given that LZW was patent-protected (well, in the USA, at least), it wasn't included in ruby. You have Zlib instead, which is what gzip/png is based on, thus enabling rmxp to work with pngs.
I want to load animated gifs in rmxp, I am reading the files by bytes, but I can't read the images color data without a LZW decompressor. However, I have heared that the LZW patent has finished some time ago.