|
You maybe interested: |
Barcode |
Image Handling in Java Generation Code 1,
Indent Contents in C# Encoding QR-Code i,
POSITIVE WAYS TO SAVE in Software Encode,
Bit Error Rate Measurements and Error Pe,
Detecting and Processing Key Codes in Ja,
Graphics and effects in VB.NET Generate ,
native barcode generator for crystal rep,
devexpress winforms barcode: Special Pro,
c# barcode scan event: Controlling Windo,
vb.net 2d barcode free: If you experienc,
generate 2d barcode vb.net: 14: Working ,
qr code in excel 2013: D Preoperative Lo,
vb.net barcode generator: Past, Present,,
itextsharp barcode vb.net: Extending Jav,
barcode vb.net source code: Registering ,
free barcode generator in asp net c#: Ca,
barcode using vb.net: Strategic Supply C,
create barcode labels c#: Microsoft SQL ,
vb.net barcode component: re-create the ,
barcode printing using c#.net: Use Syste,
create barcode c# .net: PART 4 in Micros,
barcode vb.net 2008: 13: HTML for E-Mail,
zxing barcode scanner java example: Figu,
free barcode generator in vb.net: Subque,
java aztec barcode library: Differential,
java barcode reader open source: 11: Ins,
barcode vb.net 2013: Extending Visual St,
java barcode scanner api: Of course, you,
zen barcode c# example: Download at in O,
c# create barcode image: After the user
|
Android Planet Generator generate, create barcode Planet images in Android application
PLANET Generator for Android to Generate PLANET Barcodes in Android Application using Android Barcode Generator Library
- Easy to use Android Planet generation api
- Developed from Java Planet barcode generator
- Compatible with Android 1.5 SDK and later versions
- Easy to integrate the Planet SDK into Android apps
- Generate high quality Planet barcode with the Android Planet SDK
- GIF, JPEG, and PNG are supported by the Android Planet Barcode Generator
- Reliable and mature Android barcode library for Planet generation
- Compatible with the latest Planet barcode symbology standard
- Android Planet source code is available for the purchase of the Source Code license
Index
Android Planet Barcode Generator Introduction
Android Planet barcode API is a Planet generator for Android apps, designed for creating Planet barcode on Android platform.
- Android Planet SDK is entirely developed for Android platform
- Android Planet generator is completely built in Android 1.5 SDK
- Developer Licenses for this Android Planet library are royalty-free and perpetual
The Postal Alpha Numeric Encoding Technique (PLANET) barcode is used by the United States Postal Service to identify and track pieces of mail during delivery - the Post Office's "CONFIRM" services.
The PLANET barcode is either 12 or 14 digits long.
OnBarcode provides several PLANET Generator components and software, including
PLANET .NET,
PLANET C#,
PLANET Java,
PLANET VB.NET,
PLANET ASP.NET,
PLANET Generator.
PLANET Valid Data Scope
Android PLANET supports:
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
How to generate PLANET barcodes in your Android application?
Generating barcode PLANET in Java Class example
Planet barcode = new Planet();
/*
PLANET Valid data char set:
0, 1, 2, 3, 4, 5, 6, 7, 8, 9 (Digits)
PLANET Valid data length: 11 or 13 digits only, excluding the last checksum digit
*/
barcode.setData("01234567890");
// PLANET Short bar vs high bar ratio
barcode.setShortTallRatio(0.4f);
// 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 PLANET Barcode Properties
Barcode Java Class: com.onbarcode.barcode.android.Planet.
Category |
Properties |
Value |
Comments |
Basic
|
Property: data
|
Type: String
Default: ""
|
Barcode value to encode
PLANET Valid Data Char Set:
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 (Digits)
PLANET Valid data length:
- 11 or 13 digits only, excluding the last checksum digit.
|
Property: addCheckSum
|
Type: boolean
Default: false
|
addCheckSum property is not applied here. Java Barcode will automatically add one checksum character. |
|
POSTNET Special |
Property: shortTallRatio
|
Type: float
Default: 0.4f
|
Short bar vs tall bar (Y) ratio
|
|
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
|
All Android Barcode Generator Supporting Bar Code Symbology Types
|