├── .gitattributes ├── EmojiGenerator.sln ├── EmojiGenerator ├── App.config ├── Commands.cs ├── EmojiGenerator.csproj ├── NGif │ ├── AnimatedGifEncoder.cs │ ├── GifDecoder.cs │ ├── LZWEncoder.cs │ └── NeuQuant.cs ├── Program.cs ├── Utility.cs └── packages.config ├── LICENSE ├── README.md └── img ├── capture1.png └── capture2.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /EmojiGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator.sln -------------------------------------------------------------------------------- /EmojiGenerator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/App.config -------------------------------------------------------------------------------- /EmojiGenerator/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/Commands.cs -------------------------------------------------------------------------------- /EmojiGenerator/EmojiGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/EmojiGenerator.csproj -------------------------------------------------------------------------------- /EmojiGenerator/NGif/AnimatedGifEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/NGif/AnimatedGifEncoder.cs -------------------------------------------------------------------------------- /EmojiGenerator/NGif/GifDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/NGif/GifDecoder.cs -------------------------------------------------------------------------------- /EmojiGenerator/NGif/LZWEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/NGif/LZWEncoder.cs -------------------------------------------------------------------------------- /EmojiGenerator/NGif/NeuQuant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/NGif/NeuQuant.cs -------------------------------------------------------------------------------- /EmojiGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/Program.cs -------------------------------------------------------------------------------- /EmojiGenerator/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/Utility.cs -------------------------------------------------------------------------------- /EmojiGenerator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/EmojiGenerator/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/README.md -------------------------------------------------------------------------------- /img/capture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/img/capture1.png -------------------------------------------------------------------------------- /img/capture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choshinyoung/EmojiGenerator/HEAD/img/capture2.png --------------------------------------------------------------------------------