├── ImageButter.podspec ├── LICENSE ├── README.md ├── WebP.framework ├── Headers │ ├── config.h │ ├── decode.h │ ├── demux.h │ ├── encode.h │ ├── format_constants.h │ ├── mux.h │ ├── mux_types.h │ └── types.h └── WebP ├── WebPImage.h ├── WebPImage.m ├── WebPImageLoadingProtocol.h ├── WebPImageManager.h ├── WebPImageManager.m ├── WebPImagePageView.h ├── WebPImagePageView.m ├── WebPImageView.h ├── WebPImageView.m ├── WebPLoadingView.h └── WebPLoadingView.m /ImageButter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/ImageButter.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/README.md -------------------------------------------------------------------------------- /WebP.framework/Headers/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/Headers/config.h -------------------------------------------------------------------------------- /WebP.framework/Headers/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/Headers/decode.h -------------------------------------------------------------------------------- /WebP.framework/Headers/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/Headers/demux.h -------------------------------------------------------------------------------- /WebP.framework/Headers/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/Headers/encode.h -------------------------------------------------------------------------------- /WebP.framework/Headers/format_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/Headers/format_constants.h -------------------------------------------------------------------------------- /WebP.framework/Headers/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/Headers/mux.h -------------------------------------------------------------------------------- /WebP.framework/Headers/mux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/Headers/mux_types.h -------------------------------------------------------------------------------- /WebP.framework/Headers/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/Headers/types.h -------------------------------------------------------------------------------- /WebP.framework/WebP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebP.framework/WebP -------------------------------------------------------------------------------- /WebPImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImage.h -------------------------------------------------------------------------------- /WebPImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImage.m -------------------------------------------------------------------------------- /WebPImageLoadingProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImageLoadingProtocol.h -------------------------------------------------------------------------------- /WebPImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImageManager.h -------------------------------------------------------------------------------- /WebPImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImageManager.m -------------------------------------------------------------------------------- /WebPImagePageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImagePageView.h -------------------------------------------------------------------------------- /WebPImagePageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImagePageView.m -------------------------------------------------------------------------------- /WebPImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImageView.h -------------------------------------------------------------------------------- /WebPImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPImageView.m -------------------------------------------------------------------------------- /WebPLoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPLoadingView.h -------------------------------------------------------------------------------- /WebPLoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dollarshaveclub/ImageButter/HEAD/WebPLoadingView.m --------------------------------------------------------------------------------