Skip to content

Commit 711c871

Browse files
committed
README tweaks
1 parent e5b4138 commit 711c871

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,15 @@ of work that have been invested in that project.
7676

7777
### Library Usage
7878

79+
Okapi Barcode JARs are available for download from [Maven Central](http://search.maven.org/#search|ga|1|uk.org.okapibarcode).
80+
7981
To generate barcode images in your own code using the Okapi Barcode library, use one of the symbology
8082
classes linked above:
8183

82-
1. instantiate the class,
84+
1. instantiate the barcode class,
8385
2. customize any relevant settings,
8486
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
8688
([Java 2D](src/main/java/uk/org/okapibarcode/output/Java2DRenderer.java),
8789
[PostScript](src/main/java/uk/org/okapibarcode/output/PostScriptRenderer.java),
8890
[SVG](src/main/java/uk/org/okapibarcode/output/SvgRenderer.java))
@@ -107,8 +109,6 @@ renderer.render(barcode);
107109
ImageIO.write(image, "png", new File("code128.png"));
108110
```
109111

110-
Okapi Barcode JARs are available for download from [Maven Central](http://search.maven.org/#search|ga|1|uk.org.okapibarcode).
111-
112112
### GUI Usage
113113

114114
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.
151151

152152
- GS1 Composite: avoid ArrayIndexOutOfBoundsException in some rare corner cases
153153
- 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
155155
- PDF417: fix auto-calculation of row count when data is very small and column count is specified
156156
- PDF417: add support for segment count and file name Macro PDF417 optional fields
157157
- Royal Mail 4-State: fix bug in check digit calculation

0 commit comments

Comments
 (0)