Skip to content

Commit 37d242a

Browse files
fix bug.
1 parent 0756676 commit 37d242a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/ImageDecoding/src/main/java/ImageDecoding.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ private static byte[] getFileBytes(String filePath) {
128128
private static int chooseNumber() {
129129
System.out.println();
130130
System.out.println(">> Choose a number for diffent decoding interfaces:");
131-
System.out.println(" 0£º exit program");
131+
System.out.println(" 0: exit program");
132132
System.out.println(" 1: decodeFile");
133133
System.out.println(" 2: decodeBase64String");
134134
System.out.println(" 3: decodeBufferedImage");
@@ -224,7 +224,7 @@ public static void main(String[] args) {
224224
case 6: {
225225
ImageData img = cvtToImageData(filePath);
226226

227-
//3.5 Decoding with raw buffer
227+
//3.6 Decoding with raw buffer
228228
results = dbr.decodeBuffer(img.bytes, img.width, img.height, img.stride, img.format, "");
229229
break;
230230
}

0 commit comments

Comments
 (0)