Skip to content

Commit c4f8630

Browse files
update to v3.0.6000
1 parent 0886aa1 commit c4f8630

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Samples/DocumentScanner/src/main/java/DocumentScanner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static void main(String[] args) {
5454
}
5555

5656
if (imagePath.isEmpty()) {
57-
imagePath = "../../images/document-sample.jpg";
57+
imagePath = "../../Images/document-sample.jpg";
5858
}
5959

6060
imagePath = imagePath.replaceAll("^\"|\"$", "");

Samples/DriverLicenseScanner/src/main/java/DriverLicenseScanner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public static void main(String[] args) {
147147
}
148148

149149
if (imagePath.isEmpty()) {
150-
imagePath = "../../images/driver-license-sample.jpg";
150+
imagePath = "../../Images/driver-license-sample.jpg";
151151
}
152152

153153
imagePath = imagePath.replaceAll("^\"|\"$", "");

Samples/GS1AIScanner/src/main/java/com/dynamsoft/GS1AIScanner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public static void main(String[] args) {
130130
if (imagePath.equalsIgnoreCase("q")) {
131131
return;
132132
} else if (imagePath.isEmpty()) {
133-
imagePath = "../../images/gs1-ai-sample.png";
133+
imagePath = "../../Images/gs1-ai-sample.png";
134134
}
135135

136136
imagePath = imagePath.replaceAll("^\"|\"$", "");

Samples/MRZScanner/src/main/java/MRZScanner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public static void main(String[] args) {
162162
}
163163

164164
if (imagePath.isEmpty()) {
165-
imagePath = "../../images/passport-sample.jpg";
165+
imagePath = "../../Images/passport-sample.jpg";
166166
}
167167

168168
imagePath = imagePath.replaceAll("^\"|\"$", "");

0 commit comments

Comments
 (0)