You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main question is: what should be "inside" the base64 / byte[] representation? Should it be the contents of a JPG or BMP file which represents the generated datamatrix image? Or only the RGB values without any specific file format information?
How do you want to process the base64 string / byte array after generation?
The DataMatrixWriter class in your snippet gives you a BitMatrix instance. It doesn't use System.Drawing.
If you only need the raw RGB values you can use the class BarcodeWriterPixelData.
Alternatively you can use the class BarcodeWriterSvg if want to generate a scalable SVG image.
Discussed in #509
Originally posted by abennouna12 July 12, 2023
Hello,
I was using Datamatrix.Net to generate a Datamatrix code.
Today we have migrated to .NET 7 and this generation doesn't work anymore.
So I want to use ZXing.Net to generate this Datamatrix but I didn't find documentation about the subject.
Does anyone have an idea ?
Thanks.
I have started by writing these two lines but I want to convert the result into Base64 strinr or Vyte[] Without using System.Drawing
The text was updated successfully, but these errors were encountered: