Manual For MW6 PDF417 ASP Component


Index:

Installation and Testing

MW6 PDF417 ASP Component can add professional quality 2D barcode image to your web pages.  Do the following procedures for installation and testing.

  1. Copy the MW6PDF417ASP.dll to the windows system folder of the IIS server.

  2. Do the command "regsvr32 MW6PDF417ASP.dll" for registering the PDF417 ASP Component.

  3. Copy Demo.html, Create.asp and Show.asp to a folder of the IIS server where Active Server Pages are enabled. For example, you can create one folder "C:\Inetpub\wwwroot\MyFolder" and copy those 3 files to this folder..

  4. Enter the URL of Demo.html to your browser for verifying whether PDF417 ASP component is working or not. For example, you can enter http://localhost/MyFolder/Demo.html for testing it on the IIS server itself.  

Back to Top


 

Properties

  • BarColor: Bar color and text color, the default is black.
  • BackColor: Background color, the default is white.
  • BorderStyle: Border style for the rectangle with 3 options, the default is 0 indicating no border.
    • 0 indicating no border
    • 1 indicating dash border
    • 2 indicating solid border
  • Data: The message encoded by the barcode, the default is "12".
  • ErrorCorrectionLevel: Indicates the error correction level between 0 and 8, the default is 2.
  • Height: Indicates the height of the barcode image, the default is 200 pixels.
  • NarrowBarWidth: The narrow bar width in CM, the default is 0.07CM.
  • Orientation: The orientation of barcode with 4 options, the default is value 0 indicating 0 degree.
    • 0 indicating 0 degree
    • 1 indicating 90 degrees
    • 2 indicating 180 degrees
    • 3 indicating 270 degrees
  • PDFColumns: Indicates the number of columns with the maximum value of 30, the default is 2.
  • PDFRows: Indicates the number of the rows with the maximum value of 30, the default is 10.
  • TruncatedSymbol: Indicates whether the right side of the PDF417 is removed or not, the default is FALSE.
  • Width: Indicates the width of the barcode image, the default is 300 pixels.
  • XtoYRatio: Indicates the height of the row based on the formula: height of row = XtoYRatio * NarrowBarWidth, the default is 3.0 and any value between 2 and 4 is valid.

Back to Top