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.
This commit is contained in:
Jim Evins
2019-12-03 21:31:37 -05:00
parent edcb0d7166
commit bd92e6f238
+1 -1
View File
@@ -33,7 +33,7 @@ using namespace glbarcode::Constants;
namespace
{
const double MIN_CELL_SIZE = ( 0.0625 * PTS_PER_INCH );
const double MIN_CELL_SIZE = ( 1.0/64.0 * PTS_PER_INCH );
}