├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── misc.xml └── modules.xml ├── LICENSE.md ├── README.md ├── animatedwebpexport.properties ├── animatedwebpexport.xml ├── app ├── META-INF │ └── MANIFEST.MF ├── app.iml └── src │ └── cn │ └── tino │ └── animatedwebp │ ├── MainForm.form │ └── MainForm.java └── webpLib ├── cwebp ├── vwebp └── webpmux /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/README.md -------------------------------------------------------------------------------- /animatedwebpexport.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/animatedwebpexport.properties -------------------------------------------------------------------------------- /animatedwebpexport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/animatedwebpexport.xml -------------------------------------------------------------------------------- /app/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/app/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/src/cn/tino/animatedwebp/MainForm.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/app/src/cn/tino/animatedwebp/MainForm.form -------------------------------------------------------------------------------- /app/src/cn/tino/animatedwebp/MainForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/app/src/cn/tino/animatedwebp/MainForm.java -------------------------------------------------------------------------------- /webpLib/cwebp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/webpLib/cwebp -------------------------------------------------------------------------------- /webpLib/vwebp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/webpLib/vwebp -------------------------------------------------------------------------------- /webpLib/webpmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TinoGuo/AnimatedWebp/HEAD/webpLib/webpmux --------------------------------------------------------------------------------