Hi,
I am using the BarcodeWriter for DataMatrix barcodes.
Why is the MinWidth minimum value (as also stated in the documentation) 2.
When I am setting this to 1 it seems to be ignored and 2 is used instead.
Are there any technical restrictions that require MinWidth to be greater than or equal to 2?
kind regards,
Roman
WriterSetting.MinWidth for DataMatrix
Moderator: Alex
-
- Posts: 13
- Joined: Wed Sep 07, 2011 11:16 am
-
- Site Admin
- Posts: 2397
- Joined: Thu Jul 10, 2008 2:21 pm
Re: WriterSetting.MinWidth for DataMatrix
Hello Roman,
It's a limitation in our SDK. We do not recommend to use barcodes with cell width 1.
You can generate barcode with a cell width equal to 1 as follows:
It's a limitation in our SDK. We do not recommend to use barcodes with cell width 1.
You can generate barcode with a cell width equal to 1 as follows:
- Generate barcode in vector form (as graphical path)
- Scale barcode (graphical path)
- Print *
-
- Posts: 13
- Joined: Wed Sep 07, 2011 11:16 am
Re: WriterSetting.MinWidth for DataMatrix
hi,
thanks for your quick answer!
could you state, why it is not recommended?
are there any common pitfalls in using barcodes with a low cell width?
kind regards
thanks for your quick answer!
could you state, why it is not recommended?
are there any common pitfalls in using barcodes with a low cell width?
kind regards
-
- Site Admin
- Posts: 2397
- Joined: Thu Jul 10, 2008 2:21 pm
Re: WriterSetting.MinWidth for DataMatrix
Hello,
Best regards, Alexander
Barcode reading algorithm works as follows:could you state, why it is not recommended?
are there any common pitfalls in using barcodes with a low cell width?
- Recognition algorithm reads information about cells of barcode. In most cases recognition algorithm can correctly read information about a cell of barcode if the cell has 2-3 pixels and 1-2 pixels of cell are lost.
- Error correction algorithm is used to verify/restore barcode data.
Best regards, Alexander