More PDF417 test cases

git-svn-id: https://zxing.googlecode.com/svn/trunk@2591 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen@gmail.com 2013-03-13 10:26:16 +00:00
parent 342b79eb80
commit 14fb273dcf
21 changed files with 41 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 8.

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 8.

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 8.

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 8.

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 8.

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 8.

Binary file not shown.

After

Width:  |  Height:  |  Size: 979 B

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 4.

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 4.

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 4.

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View file

@ -0,0 +1 @@
A larger PDF417 barcode with text and error correction level 4.

View file

@ -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);
}
}