More PDF417 test cases
git-svn-id: https://zxing.googlecode.com/svn/trunk@2591 59b500cc-1b3d-0410-9834-0bbf25fbcc57
BIN
core/test/data/blackbox/pdf417-3/01.png
Normal file
After Width: | Height: | Size: 4 KiB |
1
core/test/data/blackbox/pdf417-3/01.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 8.
|
BIN
core/test/data/blackbox/pdf417-3/02.png
Normal file
After Width: | Height: | Size: 140 KiB |
1
core/test/data/blackbox/pdf417-3/02.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 8.
|
BIN
core/test/data/blackbox/pdf417-3/03.png
Normal file
After Width: | Height: | Size: 119 KiB |
1
core/test/data/blackbox/pdf417-3/03.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 8.
|
BIN
core/test/data/blackbox/pdf417-3/04.png
Normal file
After Width: | Height: | Size: 298 KiB |
1
core/test/data/blackbox/pdf417-3/04.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 8.
|
BIN
core/test/data/blackbox/pdf417-3/05.png
Normal file
After Width: | Height: | Size: 230 KiB |
1
core/test/data/blackbox/pdf417-3/05.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 8.
|
BIN
core/test/data/blackbox/pdf417-3/06.png
Normal file
After Width: | Height: | Size: 136 KiB |
1
core/test/data/blackbox/pdf417-3/06.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 8.
|
BIN
core/test/data/blackbox/pdf417-3/07.png
Normal file
After Width: | Height: | Size: 979 B |
1
core/test/data/blackbox/pdf417-3/07.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 4.
|
BIN
core/test/data/blackbox/pdf417-3/08.png
Normal file
After Width: | Height: | Size: 149 KiB |
1
core/test/data/blackbox/pdf417-3/08.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 4.
|
BIN
core/test/data/blackbox/pdf417-3/09.png
Normal file
After Width: | Height: | Size: 90 KiB |
1
core/test/data/blackbox/pdf417-3/09.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 4.
|
BIN
core/test/data/blackbox/pdf417-3/10.png
Normal file
After Width: | Height: | Size: 100 KiB |
1
core/test/data/blackbox/pdf417-3/10.txt
Normal file
|
@ -0,0 +1 @@
|
|||
A larger PDF417 barcode with text and error correction level 4.
|
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Copyright 2009 ZXing authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.google.zxing.pdf417;
|
||||
|
||||
import com.google.zxing.BarcodeFormat;
|
||||
import com.google.zxing.MultiFormatReader;
|
||||
import com.google.zxing.common.AbstractBlackBoxTestCase;
|
||||
|
||||
public final class PDF417BlackBox3TestCase extends AbstractBlackBoxTestCase {
|
||||
|
||||
public PDF417BlackBox3TestCase() {
|
||||
super("test/data/blackbox/pdf417-3", new MultiFormatReader(), BarcodeFormat.PDF_417);
|
||||
addTest(4, 4, 0, 0, 0.0f);
|
||||
addTest(4, 4, 0, 0, 180.0f);
|
||||
}
|
||||
|
||||
}
|