UniPRT SDK v1.0.0.0
 
載入中...
搜尋中...
無符合項目
APdf417.h
1//
2// APdf417.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/8.
6//
7
8#ifndef APdf417_h
9#define APdf417_h
10
11#import <Foundation/Foundation.h>
12#import <UniPRT/ABarcode2D.h>
13#import <UniPRT/IRectangleCell.h>
14#import <UniPRT/Pdf417ErrCorrectionEnum.h>
15
33
44@property (nonatomic, strong) id<IPoint> start;
45
56@property (nonatomic, strong) NSString *data;
57
74@property (nonatomic, strong) id<ICellRect> cellSize;
75
86@property (nonatomic, assign) Pdf417ErrCorrectionEnum errorCorrection;
87
110@property (nonatomic, assign) int rows;
111
140@property (nonatomic, assign) int columns;
141
152- (instancetype)initWithStart:(id<IPoint>)start data:(NSString *)data;
153
179- (int)limitRange:(int)value minimum:(int)min maximum:(int)max;
180
181@end
182
183#endif /* APdf417_h */
ABarcode2D 條碼的基類。
Definition ABarcode2D.h:31
PDF417條碼的基類。
Definition APdf417.h:32
NSString * data
要在PDF417條碼中編碼的數據。
Definition APdf417.h:56
int rows
行數可以用來限制條碼的高度。
Definition APdf417.h:110
Pdf417ErrCorrectionEnum errorCorrection
PDF417條碼的錯誤校正級別。
Definition APdf417.h:86
int columns
列數可以用來限制條碼的寬度。
Definition APdf417.h:140
id< ICellRect > cellSize
單元格大小可以看作是PDF417行中最窄條元素的寬度和高度。
Definition APdf417.h:74
id< IPoint > start
PDF417條碼的起始點。
Definition APdf417.h:44
定義矩形單元類接口的協議。
Definition IRectangleCell.h:30