SDImageWebPCoder.h 577 B

12345678910111213141516171819202122
  1. /*
  2. * This file is part of the SDWebImage package.
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. #if __has_include(<SDWebImage/SDWebImage.h>)
  9. #import <SDWebImage/SDWebImage.h>
  10. #else
  11. @import SDWebImage;
  12. #endif
  13. /**
  14. Built in coder that supports WebP and animated WebP
  15. */
  16. @interface SDImageWebPCoder : NSObject <SDProgressiveImageCoder, SDAnimatedImageCoder>
  17. @property (nonatomic, class, readonly, nonnull) SDImageWebPCoder *sharedCoder;
  18. @end