1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| //
| // BU_SDImageSVGKCoder.h
| // SDWebImageSVGPlugin
| //
| // Created by DreamPiggy on 2018/9/27.
| //
|
| #import "BU_SDImageCoder.h"
| NS_ASSUME_NONNULL_BEGIN
|
| /**
| 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/.
| */
| @interface BU_SDImageSVGKCoder : NSObject <BU_SDImageCoder>
|
| @property (nonatomic, class, readonly) BU_SDImageSVGKCoder *sharedCoder;
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|