Files
yuyin_ios/Pods/SVGAPlayer/Source/SVGAExporter.h
2025-08-08 11:05:33 +08:00

22 lines
399 B
Objective-C
Executable File

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