Data Matrix is a 2D barcode symbol designed to pack a lot of information in a very small physical space, including Reed-Solomon error correction in version ECC 200.
Questions tagged [datamatrix]
131 questions
1
vote
1 answer
How to encode FNC1 starting character to make GS1 Datamatrix?
I have made string for GS1 Datamatrix
è010506060985000521sn1234567890ab 1002TRIAL003 17200228
ASCII 232
(01) Product Code (aka GTIN)
(21) Serial Number
ASCII 29 (aka aka Group Separator)
(10) Lot/Batch
ASCII 29 (aka aka Group Separator)
(17)…

Easyweb
- 31
- 1
- 2
1
vote
3 answers
Libdmtx vs ZXing for DataMatrix Decoding?
How reliable is ZXing's barcode localization for DataMatrix decoding compared to libdmtx?
I have a set of png image files of stickers (proprietary, so unfortunately I'm not able to share them) containing DataMatrix barcodes. These stickers sit on…

Neil Philip
- 15
- 1
- 5
1
vote
1 answer
How to scan older dot matrix QR codes?
We use mobile vision sdk for scanning QR codes. Some older dot matrix codes scan with a time delay, and some don't scan at all.
We tried zxing sdk. Though scanned with a delay, it gave wrong results (1 was the result).
We tried zxing app also, but…

user1699790
- 51
- 3
- 10
1
vote
0 answers
Javascript canvas square detection and orientation
I'm trying to make a DataMatrix reader in javascript that can process an image and extract the information in there. The problem is with detecting the square inside the image with the datamatrix, as this can vary in location and orientation. The…

Evertvdw
- 827
- 10
- 17
1
vote
1 answer
Undefined function or variable 'DataMatrix'
I was trying to create a DataMatrix variable by calling the DataMatrix() function.
But that function doesn't exist. If I type this:
>> DataMatrix
I got this error message:
Undefined function or variable 'DataMatrix'.
I did install the…

Code42
- 2,292
- 1
- 17
- 22
1
vote
1 answer
How to restructure a dataframe in R?
I have a dataframe generated through a series of functions inserting numerical arrays. The df consists of 156 variables with 4261 observations each. I'm trying to find the mean per column, but the colMeans() functions gives the following error:
>…

Pat Bateman
- 13
- 4
1
vote
1 answer
Datamatrix 16x48 with TCPDF library for PHP
i need to print a datamatrix code on my pdf.
Requested format by documentation is 16x48 datamatrix ECC 200.
Example code is this: 18800000571920119916120010109364801000000128003896
Result must be this one:
I'm using TCPDF library for PHP, and this…

StefanoV827
- 269
- 6
- 18
1
vote
2 answers
Python Data Matrix Detection
By using open source library, pylibdmtx is able to detect data matrix barcode inside an image. The processing speed slower when the barcode just a small portion in a large image. It take few argument to shrink and detected the barcode
Here is a part…

Jackdon Chew
- 117
- 1
- 2
- 10
1
vote
1 answer
Reading DataMatrix with AVFoundation
This works with standard QR Codes, but however not with a Data Matrix like here.

Pascal
- 2,590
- 3
- 21
- 46
1
vote
0 answers
Trying to Repeat, but data is not a multiple
So I am trying to label a data matrix with conditions; however, when I did my experiment, I had 3 tubes where I repeated the first two 7 times and the third tube 6 times. How can I code the matrix to be re-written and ignore that there is "missing"…

Aj Taylor
- 7
- 2
1
vote
1 answer
Decoding DataMatrix containing GS1 seperator with Python
So I am trying to decode a data matrix that contains data that is in ISO/IEC 15434 syntax for high-capacity ADC media using Python.
I am using this code:
def extract_dataMatrix(self):
dm_read = DataMatrix()
#return…

Gaith Mtiri
- 65
- 9
1
vote
2 answers
ECC200 Datamatrix Generation in PHP
Has anybody had any experience with generating 2D Barcodes for Royal Mail via PHP? I've spent a while attempting to get my own routines to write a valid datamatrix sadly to no avail.
I do have working conversion routines for ASCII to C40 and Luhn 16…

RefreshCarts
- 126
- 1
- 10
1
vote
0 answers
Incorrect barcode encoding data matrix
I'm developing an app on Xamarin where I need to render some strings to 2D barcodes. I'm using ZXing.Net.Mobile to do the render.
I can render properly QR codes but the issue I'm having is with the Data Matrix format.
I attach two images, when I…

marcos1490
- 362
- 3
- 12
1
vote
2 answers
zxing Datamatrix generator creating rectangular barcode which can't be scanned
I am using barcodewriter to write datamatrix barcoe. While most of the times it creates correct square style datamatrix barcode, for some of text it creates rectangular shaped barcode.
For inputData like below it creates rectangular…

DS2020
- 279
- 1
- 4
- 20
1
vote
1 answer
Decode datamatrix out of picture taken by camera2 with zxing
after more than 10 hours of searching and trying I finally decided to ask here. I am using the android.hardware.camera2 library to get the image from the device camera. Now I want to automatically process the bitmap and decode a datamatrix code if…

Benni
- 778
- 8
- 22