Class DataMatrixEncoder

java.lang.Object
com.adobe.xfa.pmp.datamatrixpmp.DataMatrixEncoder
All Implemented Interfaces:
BarcodeEncoder

public class DataMatrixEncoder extends Object implements BarcodeEncoder
Ported from DataMatrixEncoder.cpp
  • Constructor Details

    • DataMatrixEncoder

      public DataMatrixEncoder()
  • Method Details

    • encode

      public BufferedImage encode(char[] message, BarcodeGenerationParams pmpParams) throws DataMatrixEncoderException
      Encode the message into a DataMatrix symbol. param message - The byte message to be placed in the symbol. param parameters - The encoding parameters. param numberOfParameters - The number of encoding parameters. The encoding parameters are: Resolution Type: int32. Required: yes. Range: must be greater than 0. Description: The DPI resolution. This is used along with the XSymWidth and XSymHeight parameters to calculate the size of the output image in pixels. Width Type: double. Required: yes. Range: must be greater than 0.0. Description: The width of the barcode image in inches. Height Type: double. Required: yes. Range: must be greater than 0.0. Description: The height of the barcode image in inches. XSymWidth Type: int. Required: no. Default: 4. Range: must be greater than 0. Description: The size of a module in pixels.
      Specified by:
      encode in interface BarcodeEncoder
      Parameters:
      message - message to be encoded in barcode
      pmpParams - barcode params
      Returns:
      barcode image
      Throws:
      DataMatrixEncoderException