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