12345678910111213141516171819202122 |
- #import <Foundation/Foundation.h>
- #import <CoreGraphics/CoreGraphics.h>
- #import <Cocoa/Cocoa.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KMOCTool : NSObject
- +(void)createPDFFile:(NSString *)filePath imagePaths:(NSArray *)paths results:(NSArray *)resultsArray scale:(CGFloat)scale;
- +(NSData*)convertStringsToPDFWithString:(NSArray *)strings;
- +(CGRect)localCropRectForWindow:(CGWindowID)wNumber withBounds:(CGRect)bounds;
- +(NSAttributedString *)transformAttr:(NSAttributedString *)astring withString:(NSString *)str;
- @end
- NS_ASSUME_NONNULL_END
|