UniPRT SDK v1.0.0.0
 
載入中...
搜尋中...
無符合項目
Scale.h
1//
2// Scale.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/9.
6//
7
8#ifndef Scale_h
9#define Scale_h
10
11// Scale.h
12
13#import <Foundation/Foundation.h>
14#import <UniPRT/TsplCmd.h>
15#import <UniPRT/TSPL.h>
16
17#if !defined(HIDE_PGL_INTERFACES)
18
21@interface Scale : NSObject
22
23@property (nonatomic, assign) TSPLScaleUnits units;
24@property (nonatomic, assign) int horzResolution;
25@property (nonatomic, assign) int vertResolution;
26
27- (instancetype)initWithUnits:(TSPLScaleUnits)units horizontalDPI:(int)horzDpi verticalDPI:(int)vertDpi;
28- (NSString *)description;
29
30@end
31
34#endif
35
36
37#endif /* Scale_h */