Skip to content

Commit bd92e6f

Browse files
committed
Increase maximum density of 2D barcodes to 64 blocks/in. (#78)
This affects the minimum size of 2D barcodes. Even though you can print at this density, it may be problematic depending on printer quality or scanner optics.
1 parent edcb0d7 commit bd92e6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

glbarcode/Barcode2dBase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ using namespace glbarcode::Constants;
3333
namespace
3434
{
3535

36-
const double MIN_CELL_SIZE = ( 0.0625 * PTS_PER_INCH );
36+
const double MIN_CELL_SIZE = ( 1.0/64.0 * PTS_PER_INCH );
3737

3838
}
3939

0 commit comments

Comments
 (0)