UniPRT SDK v2.0.0.0
 
Loading...
Searching...
No Matches
PglPicture.h
1//
2// PglPicture.h
3// UniPRT
4//
5// Created by Realbuber on 2024/7/8.
6//
7
8#ifndef PglPicture_h
9#define PglPicture_h
10
11#import <Foundation/Foundation.h>
12#import <UniPRT/IPicture.h>
13#import <UniPRT/IPoint.h>
14#import <UniPRT/PrintPlane.h>
15#import <UniPRT/PglCmd.h>
16#import <UniPRT/PGL.h>
17#import <UniPRT/Defaults.h>
18#import <UniPRT/_PglPicture.h>
19NS_ASSUME_NONNULL_BEGIN
20
21@interface PglPicture : NSObject <IPicture>
22
23@property (nonatomic, strong) id<IPoint> Start;
24@property (nonatomic, copy) NSString *ImageName;
25@property (nonatomic, strong) id<IRuler> Ruler;
26
56- (instancetype)initWithStart:(id<IPoint>)start ImageName:(NSString *)imageName;
57
81- (NSString *)description;
82
83@end
84
85NS_ASSUME_NONNULL_END
86
87#endif /* PglPicture_h */
Definition PglPicture.h:21
id< IPoint > Start
Definition PglPicture.h:23
id< IRuler > Ruler
Definition PglPicture.h:25
NSString * ImageName
Definition PglPicture.h:24
NSString * description()
Returns a string that can be sent to the printer.
The picture interface used for placing an image on the label.
Definition IPicture.h:25