BU_SDImageSVGKCoder.h 541 B

1234567891011121314151617181920
  1. //
  2. // BU_SDImageSVGKCoder.h
  3. // SDWebImageSVGPlugin
  4. //
  5. // Created by DreamPiggy on 2018/9/27.
  6. //
  7. #import "BU_SDImageCoder.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. /**
  10. BU_SDImageSVGKCoder is a SVG image coder, which use the SVGKit for SVG rendering. It support a subset of SVG 1.1 spec. For anything related to SVG rendering, please report issue to https://github.com/SVGKit/SVGKit/.
  11. */
  12. @interface BU_SDImageSVGKCoder : NSObject <BU_SDImageCoder>
  13. @property (nonatomic, class, readonly) BU_SDImageSVGKCoder *sharedCoder;
  14. @end
  15. NS_ASSUME_NONNULL_END