Skip to content

Commit

Permalink
Increase maximum density of 2D barcodes to 64 blocks/in. (#78)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jimevins committed Dec 4, 2019
1 parent edcb0d7 commit bd92e6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glbarcode/Barcode2dBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 );

}

Expand Down

0 comments on commit bd92e6f

Please sign in to comment.