Android MSI Plessey Generator generate, create barcode MSI Plessey images in Android application

MSI Plessey Generator for Android to Generate MSI Plessey Barcodes in Android Application using Android Barcode Generator Library

  • Easy to use Android MSI Plessey generation api
  • Developed from Java MSI Plessey barcode generator
  • Compatible with Android 1.5 SDK and later versions
  • Easy to integrate the MSI Plessey SDK into Android apps
  • Generate high quality MSI Plessey barcode with the Android MSI Plessey SDK
  • GIF, JPEG, and PNG are supported by the Android MSI Plessey Barcode Generator
  • Reliable and mature Android barcode library for MSI Plessey generation
  • Compatible with the latest MSI Plessey barcode symbology standard
  • Android MSI Plessey source code is available for the purchase of the Source Code license


Index
 

Android MSI Plessey Barcode Generator Introduction

Android MSI Plessey barcode API is a MSI Plessey generator for Android apps, designed for creating MSI Plessey barcode on Android platform.

  • Android MSI Plessey SDK is entirely developed for Android platform
  • Android MSI Plessey generator is completely built in Android 1.5 SDK
  • Developer Licenses for this Android MSI Plessey library are royalty-free and perpetual

free barcode generator in c# windows application, barcode font in excel 2016, business central barcode rdlc, how to connect barcode scanner to visual basic 2010, visual basic 2008 barcode generator, c# create and print barcode

Plessey Code is a 1D linear barcode symbology based on Pulse Wide Modulation, developed in 1971 by The Plessey Company plc, a British-based company.

OnBarcode provides several MSI Plessey Generator components and software, including C# MSI Plessey Generator, .NET MSI Plessey Generator, Java MSI Plessey Generator, VB.NET MSI Plessey Generator, ASP.NET MSI Plessey Generator, MSI Plessey Generator.

 

MSI Plessey Valid Data Scope

Android MSI Plessey supports:

  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

 

How to generate MSI Plessey barcodes in your Android application?

Generating barcode MSI in Java Class example

	MSI barcode = new MSI();
	
	/*
	   MSI Plessey Valid data char set:
	        0, 1, 2, 3, 4, 5, 6, 7, 8, 9 (Digits)
	*/
	barcode.setData("112233445566");
	
	barcode.setChecksumType(MSI.CHECKSUM_AUTO);
	
	// addCheckSum is for MSI.CHECKSUM_AUTO,
	// not valid for  CHECKSUM_10, CHECKSUM_11, CHECKSUM_1010, CHECKSUM_1110.
	barcode.setAddCheckSum(true);
	
	// Unit of Measure, pixel, cm, or inch
	barcode.setUom(IBarcode.UOM_PIXEL);
	// barcode bar module width (X) in pixel
	barcode.setX(1f);
	// barcode bar module height (Y) in pixel
	barcode.setY(75f);
	
	// barcode image margins
	barcode.setLeftMargin(10f);
	barcode.setRightMargin(10f);
	barcode.setTopMargin(10f);
	barcode.setBottomMargin(10f);
	
	// barcode image resolution in dpi
	barcode.setResolution(72);
	
	// disply barcode encoding data below the barcode
	barcode.setShowText(true);
	// barcode encoding data font style
	barcode.setTextFont(new AndroidFont("Arial", Typeface.NORMAL, 12));
	// space between barcode and barcode encoding data
	barcode.setTextMargin(6);
	barcode.setTextColor(AndroidColor.black);
	
	// barcode bar color and background color in Android device
	barcode.setForeColor(AndroidColor.black);
	barcode.setBackColor(AndroidColor.white);
	
	/*
	specify your barcode drawing area
	    */
	    RectF bounds = new RectF(30, 30, 0, 0);
	barcode.drawBarcode(canvas, bounds);
 

Android MSI Plessey Barcode Properties

Barcode Java Class: com.onbarcode.barcode.android.MSI.

Category Properties Value Comments
Basic Property: data Type: String
Default: ""
Barcode value to encode

MSI Valid Data Char Set:
  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 (Digits)

Property: addCheckSum Type: boolean
Default: false
For MSI.CHECKSUM_AUTO, addCheckSum is optional. Modulo 10 will be applied, if addCheckSum property is true.

For MSI.CHECKSUM_10, MSI.CHECKSUM_11, MSI.CHECKSUM_1010, MSI.CHECKSUM_1110, addCheckSum is not applicable. Java Barcode will always add check character(s) for you.
 
MSI
Special
Property: checksumType Type: int
Default: 0 (MSI.CHECKSUM_AUTO)
Valid values:
  • 0 (MSI.CHECKSUM_AUTO)
  • 1 (MSI.CHECKSUM_10)
  • 2 (MSI.CHECKSUM_11)
  • 3 (MSI.CHECKSUM_1010)
  • 4 (MSI.CHECKSUM_1110)
 
Barcode
Size
Related
Property: autoResize Type: boolean
Default: false
Auto resize the generated barcode image
Property: barAlignment Type: int
Default: 1 (center)
Barcode horizontal alignment inside the image. 0: left, 1: center, 2: right.
Property: uom Type: int
Default: 0 (pixel)
Unit of meature for all size related settings in the library.
Valid values: 0: pixel; 1: inch; 2: cm.
Property: X Type: float
Default: 1
Width of barcode bar module (narrow bar), default is 1 pixel
Property: Y Type: float
Default: 30
Height of barcode bar module, default is 30 pixel
Property: barcodeWidth Type: float
Default: 0
Barcode image width.

If barcodeWidth setting is smaller than the barcode required minimum width, the library will automatically reset to barcode minimum width.
Property: barcodeHeight Type: float
Default: 0
Barcode image height.

If barcodeHeight setting is smaller than the barcode required minimum height, the library will automatically reset to barcode minimum height.
Property: leftMargin Type: float
Default: 0
Barcode image left margin size.
Property: rightMargin Type: float
Default: 0
Barcode image right margin size.
Property: topMargin Type: float
Default: 0
Barcode image top margin size.
Property: bottomMargin Type: float
Default: 0
Barcode image bottom margin size.
Property: resolution Type: int
Default: 72
Barcode image resolution in DPI (Dots per inch).
Property: rotate Type: int
Default: 0 (IBarcode.ROTATE_0)
Valid values:

  • 0 (IBarcode.ROTATE_0)
  • 1 (IBarcode.ROTATE_90)
  • 2 (IBarcode.ROTATE_180)
  • 3 (IBarcode.ROTATE_270)
 
Barcode
Colors
Property: backColor Type: AndroidColor
Default: AndroidColor.white
Barcode image background color
Property: foreColor Type: AndroidColor
Default: AndroidColor.black
Barcode image foreground color
 
Font
Style
Property: showText Type: boolean
Default: true
If true, display barcode data text under the barcode, otherwise do not display.
Property: textFont Type: AndroidFont
Default:
new AndroidFont("Arial", Typeface.NORMAL, 11)
Barcode text font style.
Property: textMargin Type: float
Default: 6
Space between barcode and barcode data text, default is 6 pixel
Property: textColor Type: AndroidColor
Default: AndroidColor.black
Barcode text color









OnBarcode is a market-leading provider of barcode imaging generator, reader controls and components for ASP.NET, Windows Forms, WPF, as well Java, Android, iOS (iPhone, iPad) across all major enterprise development platforms. We provides comprehensive tutorials and how-tos for various linear, 2d barcode information, such as C# in ASP.NET, C# .NET, C# Barcode Encoding, C# Barcode Image, VB.NET in ASP.NET, VB.NET Winforms, VB.NET Barcode Encoding. OnBarcode barcode products are supported by RasterEdge ASP.NET Document Viewer, which supports ASP.NET PDF Viewer, ASP.NET MVC Document Viewer, ASP.NET PDF Editor, MVC PDF Viewer. And provide high quality C# Convert PDF to Tiff, C# Convert PDF to Word, C# Convert PDF to HTML, C# Convert PDF to Jpeg images, and their easy and simple documents, like C# PDF SDK, C# extract text from PDF, C# Compress PDF, Print PDF in C# and C# extract image from PDF.
Terms of Use | Privacy Policy
Copyright © OnBarcode.com . All rights reserved.