PDF417條碼的基類。 更多...
#include <APdf417.h>
實體方法 | |
| (instancetype) | - initWithStart:data: |
| 使用指定的起始點和數據初始化APdf417類的新實例。 | |
| (int) | - limitRange:minimum:maximum: |
| 將給定的值限制在指定範圍內。 | |
實體方法 繼承自 ABarcode2D | |
| (NSString *) | - NS_REQUIRES_SUPER |
實體方法 繼承自 <IBarcode2D> | |
| (NSString *) | - description |
| 返回可以發送到打印機的字符串。 | |
屬性(properties) | |
| id< IPoint > | start |
| PDF417條碼的起始點。 | |
| NSString * | data |
| 要在PDF417條碼中編碼的數據。 | |
| id< ICellRect > | cellSize |
| 單元格大小可以看作是PDF417行中最窄條元素的寬度和高度。 | |
| Pdf417ErrCorrectionEnum | errorCorrection |
| PDF417條碼的錯誤校正級別。 | |
| int | rows |
| 行數可以用來限制條碼的高度。 | |
| int | columns |
| 列數可以用來限制條碼的寬度。 | |
屬性(properties) 繼承自 ABarcode2D | |
| id< IRuler > | ruler |
| id< IPoint > | start |
| NSString * | data |
| RotateEnum | rotation |
屬性(properties) 繼承自 <IBarcodeItem_2D> | |
| id< IPoint > | start |
| 條碼開始的位置。 | |
| NSString * | data |
| 條碼的內容。 | |
屬性(properties) 繼承自 <IPositionRuler> | |
| id< IRuler > | ruler |
屬性(properties) 繼承自 <IRotation> | |
| RotateEnum | rotation |
屬性(properties) 繼承自 <IRectangleCell> | |
| id< ICellRect > | cellSize |
| 條碼單元大小。較大的單元大小會使條碼占用更大的面積。 | |
PDF417條碼的基類。
| - (instancetype) initWithStart: | (id< IPoint >) | start | |
| data: | (NSString *) | data |
使用指定的起始點和數據初始化APdf417類的新實例。
在PglPdf417Barcode, 及 Pdf417Barcode重新實作.
| - (int) limitRange: | (int) | value | |
| minimum: | (int) | min | |
| maximum: | (int) | max |
將給定的值限制在指定範圍內。
| value | 要限制的值。 |
| min | 允許的最小值。 |
| max | 允許的最大值。 |
單元格大小可以看作是PDF417行中最窄條元素的寬度和高度。
更改最小元素的尺寸會影響條碼的整體寬度和高度。
|
readwritenonatomicassign |
列數可以用來限制條碼的寬度。
零值表示列數是自動確定的。
條碼必須允許在寬度或高度上增長以適應數據。因此,限制條碼的增長只能在一個方向上進行,要麼通過行數限制高度,要麼通過列數限制寬度。
請注意,由於開始/停止模式和左右行指示器,生成了額外的非數據列。這會創建額外的4列。
|
readwritenonatomicstrong |
要在PDF417條碼中編碼的數據。
|
readwritenonatomicassign |
PDF417條碼的錯誤校正級別。
|
readwritenonatomicassign |
行數可以用來限制條碼的高度。
零值表示行數是自動確定的。
條碼必須允許在寬度或高度上增長以適應數據。因此,限制條碼的增長只能在一個方向上進行,要麼通過行數限制高度,要麼通過列數限制寬度。