SDImageAPNGCoder.h 562 B

12345678910111213141516171819
  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. #import <Foundation/Foundation.h>
  9. #import "SDImageIOAnimatedCoder.h"
  10. /**
  11. Built in coder using ImageIO that supports APNG encoding/decoding
  12. */
  13. @interface SDImageAPNGCoder : SDImageIOAnimatedCoder <SDProgressiveImageCoder, SDAnimatedImageCoder>
  14. @property (nonatomic, class, readonly, nonnull) SDImageAPNGCoder *sharedCoder;
  15. @end