12345678910111213141516171819 |
- //
- // KMConvertPDFManagerOC.h
- // PDF Master
- //
- // Created by wanjun on 2023/3/8.
- //
- #import <Foundation/Foundation.h>
- #import <Quartz/Quartz.h>
- @interface KMConvertPDFManagerOC : NSObject
- + (NSArray *)supportFileType;
- + (void)convertFile:(NSString *)filePath
- savePath:(NSString *)savePath
- completionHandler:(void (^)(BOOL success,NSDictionary *errorDic))complet;
- @end
|