@@ -76,13 +76,15 @@ of work that have been invested in that project.
76
76
77
77
### Library Usage
78
78
79
+ Okapi Barcode JARs are available for download from [ Maven Central] ( http://search.maven.org/#search|ga|1|uk.org.okapibarcode ) .
80
+
79
81
To generate barcode images in your own code using the Okapi Barcode library, use one of the symbology
80
82
classes linked above:
81
83
82
- 1 . instantiate the class,
84
+ 1 . instantiate the barcode class,
83
85
2 . customize any relevant settings,
84
86
3 . invoke ` setContent(String) ` , and then
85
- 4 . pass the symbol instance to one of the available symbol renderers
87
+ 4 . pass the barcode instance to one of the available renderers
86
88
([ Java 2D] ( src/main/java/uk/org/okapibarcode/output/Java2DRenderer.java ) ,
87
89
[ PostScript] ( src/main/java/uk/org/okapibarcode/output/PostScriptRenderer.java ) ,
88
90
[ SVG] ( src/main/java/uk/org/okapibarcode/output/SvgRenderer.java ) )
@@ -107,8 +109,6 @@ renderer.render(barcode);
107
109
ImageIO.write(image, "png", new File("code128.png"));
108
110
```
109
111
110
- Okapi Barcode JARs are available for download from [ Maven Central] ( http://search.maven.org/#search|ga|1|uk.org.okapibarcode ) .
111
-
112
112
### GUI Usage
113
113
114
114
To use the Swing GUI, just run the [ OkapiUI] ( src/main/java/uk/org/okapibarcode/gui/OkapiUI.java ) class.
@@ -151,7 +151,7 @@ and data.
151
151
152
152
- GS1 Composite: avoid ArrayIndexOutOfBoundsException in some rare corner cases
153
153
- PDF417: add ` setContent(byte[]) ` method for binary data
154
- - PDF417: when using structured append (Macro PDF417), place padding before control block rather than after
154
+ - PDF417: when using structured append (Macro PDF417), place padding before control block, not after
155
155
- PDF417: fix auto-calculation of row count when data is very small and column count is specified
156
156
- PDF417: add support for segment count and file name Macro PDF417 optional fields
157
157
- Royal Mail 4-State: fix bug in check digit calculation
0 commit comments