iprint2 Posted February 5, 2016 Share Posted February 5, 2016 I need to create a 2d bar code. The only info that I have is that it needs to be binary coding for a Pitney Bowes realy 6000 inserter. The code needs to go in the same place on a survey and letter. Quote Link to comment Share on other sites More sharing options...
Alex Marshall Posted February 5, 2016 Share Posted February 5, 2016 The encoding types are listed and documented in the following places: • In the FusionPro Rules Guide, in the section “How to use the DataMatrixbarcode() function” (page 102). • On the Building Blocks dialog, on the Objects tab, under Barcodes -> DataMatrixBarcode -> encoding. • http://www.idautomation.com/barcode-faq/2d/data-matrix/#Encoding_Modes The Rule will look like this: var dataforbarcode = Field('First Name'); var dmbarcodeobj = new DataMatrixBarcode; dmbarcodeobj.encodingmode = "C40"; dmbarcodeobj.pointSize = 12; return dmbarcodeobj.Make(dataforbarcode); Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted February 6, 2016 Share Posted February 6, 2016 What kind of 2D barcode do you want to create? FusionPro can emit three different types of 2D barcodes: DataMatrix, PDF417, and QR. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.