UniPRT SDK v1.0.0.0
 
载入中...
搜索中...
未找到
Pdf417EncoderTables.h
1//
2// Pdf417EncoderTables.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/14.
6//
7
8//
9// Pdf417EncoderTables.h
10//
11// PDF417 Barcode Encoder
12//
13// Static Tables class
14//
15// Author: Uzi Granot
16// Version: 2.0
17// Date: May 7, 2019
18// Copyright (C) 2019 Uzi Granot. All Rights Reserved
19//
20// PDF417 barcode encoder class and the attached test/demo
21// applications are free software.
22// Software developed by this author is licensed under CPOL 1.02.
23//
24// The main points of CPOL 1.02 subject to the terms of the License are:
25//
26// Source Code and Executable Files can be used in commercial applications;
27// Source Code and Executable Files can be redistributed; and
28// Source Code can be modified to create derivative works.
29// No claim of suitability, guarantee, or any warranty whatsoever is
30// provided. The software is provided "as-is".
31// The Article accompanying the Work may not be distributed or republished
32// without the Author's consent
33//
34// Version History
35// ---------------
36//
37// Version 1.0 2019/04/01
38// Original version
39//
40
41#import <Foundation/Foundation.h>
42
45@interface Pdf417EncoderTables : NSObject
46
47@property (class, nonatomic, readonly) NSArray<NSNumber *> *fact900;
48@property (class, nonatomic, readonly) NSArray<NSDecimalNumber *> *factBigInt900;
49@property (class, nonatomic, readonly) NSData *textToUpper;
50@property (class, nonatomic, readonly) NSData *textToLower;
51@property (class, nonatomic, readonly) NSData *textToMixed;
52@property (class, nonatomic, readonly) NSData *textToPunct;
53@property (class, nonatomic, readonly) NSArray<NSArray<NSNumber *> *> *errorCorrectionTables;
54@property (class, nonatomic, readonly) NSArray<NSData *> *codewordTable;
55
56@end
57