Jump to content

Generating 2D Barcodes


rgreenidge

Recommended Posts

Richard,

 

If you are looking for information about how to use 2D barcodes, see the "Creating a 2D Barcode" section of the Advanced Features video tutorial:

 

http://files.printable.com/TrainingVideos/Advanced%20Functionality/Advanced%20Features.html

 

FusionPro VDP products do include the fonts and algorithms to generate Datamatrix and PDF417 2D barcodes. The algorithm is run during the composition of the document and is referred to in a JS rule.

 

hth

Link to comment
Share on other sites

  • 2 months later...

Hi Mark, I am hoping you can help me out. I have created a 2D Barcode using a script posted by one of the users here on the forum. I am trying to resize the barcodes x size. I need to generate a 2D Barcode that is matrix 16x48 and matrix 18x18. The IDAutomation website shows that there is a format number that controls the size of the barcode. However I do not know what part of this script controls this function. I have posted the script below.

 

/*dataForBarcode = Field("account_num");

 

dmBarcodeObj = new DataMatrixBarcode('', '', '', '', '', '');

 

markupData = dmBarcodeObj.Make(dataForBarcode);

 

return markupData;

 

*/

 

dataForBarcode = Field("memid");

 

dmBarcodeObj = new DataMatrixBarcode('', '', '');

 

dmBarcodeObj.pointSize = 4;

 

dmBarcodeObj.encodingMode = "BASE256";

 

markupData = dmBarcodeObj.Make(dataForBarcode);

 

return markupData;

 

Any help would be appreciated.

 

Thanks,

Richard.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...