SVGAExporter.h 399 B

123456789101112131415161718192021
  1. //
  2. // SVGAExporter.h
  3. // SVGAPlayer
  4. //
  5. // Created by 崔明辉 on 2017/3/7.
  6. // Copyright © 2017年 UED Center. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SVGAVideoEntity;
  10. @interface SVGAExporter : NSObject
  11. @property (nonatomic, strong) SVGAVideoEntity *videoItem;
  12. - (NSArray<UIImage *> *)toImages;
  13. - (void)saveImages:(NSString *)toPath filePrefix:(NSString *)filePrefix;
  14. @end