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
0
votes
0 answers
Is there a way to save a list of bitmaps into a word or excel file
I've got a list of this object:
public class SerialMatrix
{
public string SerialNumber { get; set; }
public Image DataMatrix { get; set; }
}
Is there a way to populate a word/excel file with that list?
The problem is that to insert a Image…

HiramL.
- 3
- 5
0
votes
1 answer
Changing the size of a module in BarcodeDataMatrx crops the code image
I am adding a BarcodeDataMatrix to an existing pdf document. Since this document is automatically processed, the size of each module must be according to the speicification of the automation (that is higher than the default generated).
This can be…

Mario The Spoon
- 4,799
- 1
- 24
- 36
0
votes
0 answers
How to add a data to dataframe from data matrix
I have a data frame which name is thumb_df. It has headers in every column and counts 3000. I produced needed to log2 and then quantile normalize it. And for that, I assigned the thumb_df to data_mat which is a data matrix then make the 0 cells 1 so…

Asker111
- 1
0
votes
1 answer
How to read a datamatrix code locally in Ionic
I'am working on an Ionic 3 based mobile application, it needs to be able to work offline. One of its features is to read data matrix two-dimensional codes while being offline.
I have tried using Ionic Native plugins such as Barcode Scanner or QR…

Multitut
- 2,089
- 7
- 39
- 63
0
votes
0 answers
Present a DataMatrix in iOS
I want to present a DataMatrix from a given String in an iOS App (NOT a barcode), but can not found any working SDK, guide or even hint to a solution. The only thing I found was a way to READ it, but it looks like the AVFoundation can't be used to…

Walter White
- 315
- 4
- 7
0
votes
0 answers
ZXing, DataMatrix Reader with TryInverted color option doesn't seems to work on iOs (Xamarin.Forms)
I am developing an App using Xamarin.Forms and Visual Studio, and I also try to use ZXing.Net.Mobile and ZXing.Net.Mobile.Forms Nuget Packages to scan DataMatrix.
By default everything works fine, except when DataMatrix are printed using inverted…

Alexis44
- 1
- 3
0
votes
1 answer
Data Matrix 2d barcode and fusion pro
I'm in a bit of a stump. Not sure how many people here are familiar with the plug-in "Fusion Pro" for Acrobat but maybe it doesn't matter.
I need to create a 2d Barcode and have it read data for 3 or more columns in excel i.e.: A, B, C, D
As said…

ARain
- 1
- 1
0
votes
1 answer
Generate DataMatrix 2D Code (ECC 200)
I need to create a DataMatrix code in Swift and I have only found a solution with the help of the ZXingObjc library. https://github.com/TheLevelUp/ZXingObjC
Is there any other way to do this? I do also use RSBarcodes_Swift…

Boris
- 3
- 1
0
votes
1 answer
itext DataMatrix barcode with UTF-8 chars
What properties need to be set on an itextsharp Data-Matrix barcode to enable me to pass UTF-8 chars into the content?
var matrix = new BarcodeDatamatrix();
iTextSharp.text.Image img = null;
//matrix.Options =…

Mark Cooper
- 6,738
- 5
- 54
- 92
0
votes
1 answer
How to Encode bits/bytes in 2D barcode in the most space-efficient way?
I am trying to squeeze the size of one of the popular barcodes to store around 580 bits, the output of this example. (i.e. an encrypted hash)
I need to make it work in datamatrix and pdf417
I know that I can convert to base64 but I want to know if…

David Hofmann
- 5,683
- 12
- 50
- 78
0
votes
1 answer
GS1 Datamatrix Codes with Motorola EMDK for .Net
I've been trying to read GS1 data matrix codes with the "Motorola EMDK for .net v. 2.7". For that I've been using the Symbol(v. 2.5.0.3) and Symbol.Barcode(v. 2.7.0.2) Assemblies and created the following sample code in a Windows Forms…

Charlie
- 11
- 4
0
votes
2 answers
Many datamatrix barocdes in one image
A scanned image contains 96 barcodes. There is an example below.
To read barcodes I use library from inliteresearch.com .
If one or more barcodes are missing in image (i.e it contains less than 96 barcodes, in other words, there is a blank space…
user1894341
0
votes
1 answer
reading dataframe or matrix value just similar to process pipeline in parallel system
I have a matrix or data table as below:
which looks like
time node1 node2 node3
1 100 200 300
2 101 245 329
3 …

azad
- 137
- 1
- 7
0
votes
0 answers
Create a 2D data matrix from string with Groovy
I am wanting to create an automated test case within Ready API that creates 2D data matrices from input strings that come back in the response to a REST web service request. I would like for the script to save these 2D data matrices as GIF or JPEG…

chucknor
- 837
- 2
- 18
- 33
0
votes
2 answers
Error while attempting to use "using com.google.zxing;" to decode Data Matrix
I started off from the thread to [decode data matrix in C#] (How To Use ZXing C# Port)! but I am encountering an error that prevents me from using zxing.
error states: "The type or namespace name 'com' could not be found (are you missing a using…

JayI
- 1