rgreenidge Posted May 26, 2009 Posted May 26, 2009 How do they work in FP 6.0. I understand that it requires two parts. The font that's installed in FP and a generator. How does the generator and FP work together. Thanks in advance, Richard. FP 6.0 on a Mac.
esmith Posted May 26, 2009 Posted May 26, 2009 Isn't that a little like asking the magician how he makes the elephant disappear?
mhilger Posted May 26, 2009 Posted May 26, 2009 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
rgreenidge Posted May 26, 2009 Author Posted May 26, 2009 Thanks Mark, I''l check it out. Thanks, Richard.
rgreenidge Posted August 18, 2009 Author Posted August 18, 2009 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.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.