Jump to content

Search the Community

Showing results for tags 'datamatrix'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome
    • Start Here!
    • News
  • Software-Related Talk
    • Documentation
    • Getting Started
    • The JavaScript Library
    • FusionPro® VDP Creator
    • FusionPro® VDP Producer
    • FusionPro® VDP Server (API)
    • FusionPro® Expression®
    • MarcomCentral®
  • Support
    • Issues, Questions, Etc.
    • Digital Workflow Documents
    • Fonts
  • Off Topic
    • Customer Polls
    • Job Board (Moderated)
    • Reviews, Rants, and General Musings

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me


Location


Occupation


FusionPro VDP software version


OS


Acrobat Version


Homepage


ICQ


AIM


Yahoo


MSN


Skype


User Title

Found 2 results

  1. I have to build by FP Creator a DM for Poste Italiane that requires the following: Error Correction: ECC 200 (Reed-Solomon) Format: Rectangular, 16 x 48 cells X Dimension: 0,508 mm Dimensions (no quiet-zone):2 cells per side (H x L): 8,128 mm x 24,384 mm; Dimensions (with quiet-zone): 2 celle per lato (H x L): 10,160 mm x 26,416 mm; Pixel/Cell: 4 (200 dpi) This has to be built by using 72 alphanumeric chars. I still do not have the input file, so I created a 72 chars txt... I simply created a rule like this (see also zip attached): var FieldOrRuleToEncode = "barcode"; var EncodingMode = "C40"; var PreferredFormat = "29"; var PointSize = StringToNumber("10 pt"); var Font = "IDAutomationDMatrix"; var NoFontTag = false; var ProcessTilde = false; var DataToEncode = FieldOrRule(FieldOrRuleToEncode); return MakeDataMatrixBarcode(DataToEncode, ProcessTilde, EncodingMode, PreferredFormat, PointSize, NoFontTag, Font); And I got a readable SQUARE DM. I guess the PreferredFormat 29 is correct for the rectangular DM, but I got it square: no clue about ECC 200... Any Help? Thank you Maurizio DM.zip
  2. Below is the code I am using to generate a 25 character DataMatrix barcode. // Rule converted from XML Template "DataMatrix Barcode": // Choose the following values: // Begin XML Template selections // var jobID = "0103999"; // 7 digit var sequence = Field("sequence"); // 6 digit var currSheet = FormatNumber( "00", FusionPro.Composition.impositionSheetNumber ); // 2 digit var totSheets = FormatNumber( "00", FusionPro.Composition.impositionTotalSheets ); // 2 digit var feeder1 = Field("feeder1"); // 1 digit var feeder2 = Field("feeder2"); // 1 digit var feeder3 = Field("feeder3"); // 1 digit var feeder4 = Field("feeder4"); // 1 digit var feeder5 = Field("feeder5"); // 1 digit var feeder6 = Field("feeder6"); // 1 digit var divertBin = Field("divertbin"); // 1 digit var sortYN = Field("sort"); // 1 digit var EncodingMode = "Text"; var PreferredFormat = "0"; var PointSize = StringToNumber("6"); var NoFontTag = false; var Font = "IDAutomationDMatrix"; // var ProcessTilde = false; // End XML Template selections // var DataToEncode = (jobID + sequence + currSheet + totSheets + feeder1 + feeder2 + feeder3 + feeder4 + feeder5 + feeder6 + divertBin + sortYN); return MakeDataMatrixBarcode(DataToEncode, ProcessTilde, EncodingMode, PreferredFormat, PointSize, NoFontTag, Font); Need a unique DataMatrix barcode on front of each sheet of a set. (sheet = front+back. NON-IMPOSED) Imposition is done at print device. (set = 2 sheets) The Sheet Counter should generate four digits. (0102, 0202; 0102, 0202; etc...) The result I am getting is always 0100 for each record. I have also tried the CurrentPage counter too. I just can't figure out how to get the counter to work properly. Please help. 2D Barcode Sheet counter.pdf test data.csv.zip test data-Output.pdf
×
×
  • Create New...