A B C D E F G H I J L M N O P Q R S T U V W Z _

A

A - Static variable in class com.aspose.barcode.CodaBarSymbol
Specifies character A as the start or stop symbol of the Codabar barcode specification.
A - Static variable in class com.aspose.barcode.Code128CodeSet
Specifies code set A should be used to encode the data in the CODE128 specification.
ABOVE - Static variable in class com.aspose.barcode.CodeLocation
Specifies that the code text is shown on the top of the bar code.
AI - Static variable in class com.aspose.barcode.EAN128EncodeMode
The CodeText will be encoded into the barcode used the internation standard of Application Identifiers (AI).
Alignment - Class in com.aspose.barcode
Caption or Barcode image's alignment style
AlphaNumber - Static variable in class com.aspose.barcode.QREncodeMode
AlphaNumber mode, include A-Z, 0-9 and the SP, $, %, *, +, -, ., / and :
AntiAlias - Static variable in class com.aspose.barcode.ImageQualityMode
Specifeis Anti-aliased image rendering.
AntiClockwise - Static variable in class com.aspose.barcode.RotationDirection
anti clockwise rotate
append(String) - Method in class com.aspose.barcode.Code128CodeBuilder
 
ASCII - Static variable in class com.aspose.barcode.DataMatrixEncodeMode
Encodes one alphanumeric or two numeric characters per byte
AssemblyVersion - Static variable in class com.aspose.barcode.BuildVersionInfo
The assembly version.
AustralianPosteParcel - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Australian Post Domestic eParcel Barcode barcode specification
AustralianPosteParcelCodeSet - Class in com.aspose.barcode
Specifies the code set of CODE128 barcode specification used to encode the data.
AustraliaPost - Static variable in class com.aspose.barcode.Symbology
Represents Australia Post Customer BarCode
AustraliaPostFormatControlCode - Class in com.aspose.barcode
Represents the Format Control Code Field of Australia Post BarCode
Auto - Static variable in class com.aspose.barcode.Alignment
auto alignment
Auto - Static variable in class com.aspose.barcode.AustralianPosteParcelCodeSet
Specifies using the embeded optimized arithmetic to encode the data, which will use the shortest encoding result.
Auto - Static variable in class com.aspose.barcode.Code128CodeSet
Specifies using the embeded optimized arithmetic to encode the data, which will use the shortest encoding result.
Auto - Static variable in class com.aspose.barcode.DataMatrixEncodeMode
Automatically pick up the best encode mode for datamatrix encoding
Auto - Static variable in class com.aspose.barcode.Pdf417CompactionMode
auto detect compation mode
Auto - Static variable in class com.aspose.barcode.QREncodeMode
auto detect the mode
AutoAI - Static variable in class com.aspose.barcode.EAN128EncodeMode
 
Aztec - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Aztec barcode specification

B

B - Static variable in class com.aspose.barcode.CodaBarSymbol
Specifies character B as the start or stop symbol of the Codabar barcode specification.
B - Static variable in class com.aspose.barcode.Code128CodeSet
Specifies code set B should be used to encode the data in the CODE128 specification.
Bar - Static variable in class com.aspose.barcode.ITF14BorderType
Tow horizontal bars enclosing the barcode
BarCodeBuilder - Class in com.aspose.barcode
supported symbology: 1D: Codabar, Code11, Code128, Code39Standard, Code39Extended Code93Standard, Code93Extended, EAN13, EAN8, Interleaved2of5, MSI, Standard2of5, UPCA, UPCE, BooklandEAN, EAN128, Postnet, Planet EAN14(SCC14), SSCC18, ITF14, SingaporePost 2D: DataMatrix, PDf417, QR code Create and save a BarCode image BarCodeBuilder bd = new BarCodeBuilder(expStr, symbology); bd.setSymbologyType(symbology); bd.setCodeLocation(CodeLocation.ABOVE); bd.save(file);
BarCodeBuilder() - Constructor for class com.aspose.barcode.BarCodeBuilder
BarCodeBuilder's constructer, default SymbologyType is Code128, default CodeText is 12345678
BarCodeBuilder(String) - Constructor for class com.aspose.barcode.BarCodeBuilder
BarCodeBuilder's constructer, default SymbologyType is Code128
BarCodeBuilder(String, int) - Constructor for class com.aspose.barcode.BarCodeBuilder
BarCodeBuilder's constructer
BarCodeException - Exception in com.aspose.barcode
Represents the exception for creating barcode image.
BarCodeException() - Constructor for exception com.aspose.barcode.BarCodeException
Initialize an instance of BarCodeException class
BarCodeException(String) - Constructor for exception com.aspose.barcode.BarCodeException
Initialize an instance of BarCodeExceptionBarCodeException class with specified error message.
BarCodeException(String, RuntimeException) - Constructor for exception com.aspose.barcode.BarCodeException
Initilize an instance of BarCodeExceptionBarCodeException class with the specified error message and the current exception.
BarCodeImageFormat - Class in com.aspose.barcode
Specifies the file format of the image.
BarCodeOrientation - Class in com.aspose.barcoderecognition
The orientation of the recognized barcode.
BarCodeReader - Class in com.aspose.barcoderecognition
BarCodeReader encapsulates an image which may contain one or several barcodes, it then can perform Read operation to detect barcodes Detect an code39 barcode with supplement BarCodeReadType barCodeReadType = BarCodeReadType.getCode39Standard(); String file = "path/to/image/image.png"; BarCodeReader reader = new BarCodeReader(file, barCodeReadType); while(reader.read()) { System.out.println("BarCode Type: "+reader.getReadType()); System.out.println("BarCode CodeText: " + reader.getCodeText()); } reader.Close();
BarCodeReader(Bitmap) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
BarCodeReader constructor from an image
BarCodeReader(BufferedImage, BarCodeReadType) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
Initializes a new instance of the BarCodeReader class.
BarCodeReader(Bitmap, BarCodeReadType) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
 
BarCodeReader(Bitmap, Rectangle, BarCodeReadType) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
 
BarCodeReader(BinarizedBitmap, BarCodeReadType) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
 
BarCodeReader(String) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
BarCodeReader constructor
BarCodeReader(String, BarCodeReadType) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
Initializes a new instance of the BarCodeReader class.
BarCodeReader(InputStream) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
 
BarCodeReader(InputStream, BarCodeReadType) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
 
BarCodeReader(BinarizedBitmap) - Constructor for class com.aspose.barcoderecognition.BarCodeReader
 
BarCodeReadType - Class in com.aspose.barcoderecognition
Specify the type of barcode to read.
BarCodeRecognitionException - Exception in com.aspose.barcoderecognition
General exception thrown by BarCodeReader, inherited from BarCodeException
BarCodeRecognitionException(String) - Constructor for exception com.aspose.barcoderecognition.BarCodeRecognitionException
Initialize an instance of BarCodeRecognitionException class
BarCodeRecognitionException(String, RuntimeException) - Constructor for exception com.aspose.barcoderecognition.BarCodeRecognitionException
Initialize an instance of BarCodeRecognitionException class with the specified error message and the current exception.
BarCodeRegion - Class in com.aspose.barcoderecognition
Represents the barcode's region Draw edges of the barcode region, then fill it.
Below - Static variable in class com.aspose.barcode.CodeLocation
Specifies that the code text is shown on the bottom of the bar code.
Binary - Static variable in class com.aspose.barcode.Pdf417CompactionMode
binary compaction mode
Binary - Static variable in class com.aspose.barcode.QREncodeMode
8-bit binary mode
BMP - Static variable in class com.aspose.barcode.BarCodeImageFormat
Specifies the bitmap (BMP) image format.
BooklandEAN - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Bookland-EAN barcode specification
BorderDashStyle - Class in com.aspose.barcode
Specifies the style of dashed border lines.
Bottom - Static variable in class com.aspose.barcode.Alignment
bottom middle
BottomLeft - Static variable in class com.aspose.barcode.Alignment
at the left bottom corner
BottomRight - Static variable in class com.aspose.barcode.Alignment
at the bottom right corner
BuildVersionInfo - Class in com.aspose.barcode
Contains the current build version information.
BuildVersionInfo() - Constructor for class com.aspose.barcode.BuildVersionInfo
 

C

C - Static variable in class com.aspose.barcode.CodaBarSymbol
Specifies character C as the start or stop symbol of the Codabar barcode specification.
C - Static variable in class com.aspose.barcode.Code128CodeSet
Specifies code set C should be used to encode the data in the CODE128 specification.
c_AllBarCodeType_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_AllSupportedType_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_AustraliaPost_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Aztec_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_BooklandEAN_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Codabar_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Code11_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Code128_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Code32_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Code39Extended_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Code39Standard_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Code93Extended_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Code93Standard_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_DataBar_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_DataBarLimited_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_DataMatrix_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_DeutschePostIdentcode_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_DeutschePostLeitcode_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_EAN128_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_EAN13_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_EAN14_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_EAN8_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Empty_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_IATA2of5_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Interleaved2of5_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_ISSN_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_ItalianPost25_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_ITF14_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_ITF6_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_MacroPdf417_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Matrix2of5_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_MSI_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_OneCode_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_OPC_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Patch_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Pdf417_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Planet_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Postnet_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_PZN_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_QR_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_RM4SCC_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_SSCC18_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Standard2of5_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_Supplement_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_UPCA_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_UPCE_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
c_VIN_Value - Static variable in class com.aspose.barcoderecognition.BarCodeReadType
 
Caption - Class in com.aspose.barcode
The text caption shown in the barcode image.
Caption() - Constructor for class com.aspose.barcode.Caption
Initialize an instance of Captioncaption class with default vaule.
Caption(String) - Constructor for class com.aspose.barcode.Caption
Initialize an instance of Captioncaption class with specified text.
Caption(String, boolean, int, float, Color, Font) - Constructor for class com.aspose.barcode.Caption
 
Clockwise - Static variable in class com.aspose.barcode.RotationDirection
clock wise rotate
close() - Method in class com.aspose.barcoderecognition.BarCodeReader
Closes barcode reader.
Codabar - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with CODABAR barcode specification
CodaBarSymbol - Class in com.aspose.barcode
Specifies the start or stop symbol of the Codabar barcode specification.
CodaBarSymbol() - Constructor for class com.aspose.barcode.CodaBarSymbol
 
Code11 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with CODE 11 barcode specification
Code128 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with CODE 128 barcode specification
Code128CodeBuilder - Class in com.aspose.barcode
Use to generate customized CodeText for Code128 barcode.
Code128CodeBuilder(int) - Constructor for class com.aspose.barcode.Code128CodeBuilder
 
Code128CodeBuilder() - Constructor for class com.aspose.barcode.Code128CodeBuilder
 
Code128CodeSet - Class in com.aspose.barcode
Specifies the code set of CODE128 barcode specification used to encode the data.
Code39Extended - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Extended CODE 39 barcode specification
Code39Standard - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Standard CODE 39 barcode specification
Code93Extended - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Extended CODE 93 barcode specification
Code93Standard - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Standard CODE 93 barcode specification
CodeLocation - Class in com.aspose.barcode
Specifies the location of the code text shown in the image.
com.aspose.barcode - package com.aspose.barcode
 
com.aspose.barcoderecognition - package com.aspose.barcoderecognition
 
copy() - Method in class com.aspose.barcode.Caption
Get a new copy of the caption instance.
CUSTOMER_2 - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Customer BarCode 2
CUSTOMER_3 - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Customer BarCode 3
Customized - Static variable in class com.aspose.barcode.AustralianPosteParcelCodeSet
Specifies using B symbol instead of A symbol before human-readable data.
Customized - Static variable in class com.aspose.barcode.Code128CodeSet
Specifies using the customized codeset.
Customized - Static variable in class com.aspose.barcode.ResolutionMode
Apply the resolution of the barcode image according to the user defined DpiX and DpiY properties.
Customized - Static variable in class com.aspose.barcoderecognition.RecognitionHints.ScanStrengthHints.ScanStrength
 

D

D - Static variable in class com.aspose.barcode.CodaBarSymbol
Specifies character D as the start or stop symbol of the Codabar barcode specification.
Dash - Static variable in class com.aspose.barcode.BorderDashStyle
Specifies a line consisting of dashes.
DashDot - Static variable in class com.aspose.barcode.BorderDashStyle
Specifies a line consisting of a repeating pattern of dash-dot.
DashDotDot - Static variable in class com.aspose.barcode.BorderDashStyle
Specifies a line consisting of a repeating pattern of dash-dot-dot.
DataMatrix - Static variable in class com.aspose.barcode.Symbology
2D barcode symbology DataMatrix
DataMatrixEncodeMode - Class in com.aspose.barcode
DataMatrix encoder's encoding mode, default to Auto
Default - Static variable in class com.aspose.barcode.ImageQualityMode
Specifies No anti-aliasing image rendering.
DeutschePostIdentcode - Static variable in class com.aspose.barcode.Symbology
Represents Deutschen Post barcode, This Symbology is also known as Identcode,CodeIdentcode,German Postal 2 of 5 Identcode, Deutsche Post AG Identcode, Deutsche Frachtpost Identcode, Deutsche Post AG (DHL)
DeutschePostLeitcode - Static variable in class com.aspose.barcode.Symbology
Represents Deutsche Post Leitcode Barcode,also known as German Postal 2 of 5 Leitcode, CodeLeitcode, Leitcode, Deutsche Post AG (DHL).
Display - Static variable in class com.aspose.barcode.GraphicsUnit
 
dispose() - Method in class com.aspose.barcode.Caption
Dispose the Caption instance
Document - Static variable in class com.aspose.barcode.GraphicsUnit
 
Dot - Static variable in class com.aspose.barcode.BorderDashStyle
Specifies a line consisting of dots.
DOWN_TO_TOP - Static variable in class com.aspose.barcoderecognition.BarCodeOrientation
drawBarCodeEdges(Graphics2D, Stroke, Paint) - Method in class com.aspose.barcoderecognition.BarCodeRegion
Draws the bar code edges.

E

EAN128 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with EAN128 barcode specification
EAN128EncodeMode - Class in com.aspose.barcode
Specifies the encode mode of EAN128 used to encode the data.
EAN13 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with EAN-13 barcode specification
EAN14 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with EAN14/ SCC14 barcode specification
EAN8 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with EAN-8 barcode specification
EAN_128_FNC_1 - Static variable in class com.aspose.barcode.BarCodeBuilder
 
equals(Object) - Method in class com.aspose.barcode.Margins
Determines whether two MarginsMargins instances are equal.
equals(Object) - Method in class com.aspose.barcode.MarginsF
Determines whether two MarginsFMarginsF instances are equal.
equals(Object) - Method in class com.aspose.barcode.Resolution
Determines whether two ResolutionResolution instances are equal.
equals(Object) - Method in class com.aspose.barcoderecognition.BarCodeReadType
Determines whether the specified System.Object is equal to this instance.
equals(Object) - Method in class com.aspose.barcoderecognition.RecognitionHints
Determines whether the specified System.Object is equal to this instance.

F

FileVersion - Static variable in class com.aspose.barcode.BuildVersionInfo
The file version.
fillBarCodeRegion(Graphics2D, Paint) - Method in class com.aspose.barcoderecognition.BarCodeRegion
Fills the bar code region.
Frame - Static variable in class com.aspose.barcode.ITF14BorderType
Frame enclosing the barcode
fromString(String) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Get barcode type to read from the string value.
Full - Static variable in class com.aspose.barcode.DataMatrixEncodeMode
Encode 8 bit values

G

generateBarCodeImage() - Method in class com.aspose.barcode.BarCodeBuilder
Generate the BarCode image under current settings
getAllSupportedTypes() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets all supported types.
getAspectRatio() - Method in class com.aspose.barcode.BarCodeBuilder
 
getAspectRatio() - Method in interface com.aspose.barcode.IBarCodeControl
 
getAustralianPosteParcelCodeSet() - Method in class com.aspose.barcode.BarCodeBuilder
 
getAustraliaPost() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the australia post.
getAustraliaPostFormatControlCode() - Method in class com.aspose.barcode.BarCodeBuilder
 
getAustraliaPostFormatControlCode() - Method in interface com.aspose.barcode.IBarCodeControl
 
getAutoCalculateByImage() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ThresholdHints
 
getAutoCalculateByLine() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ThresholdHints
 
getAutoSize() - Method in class com.aspose.barcode.BarCodeBuilder
 
getAutoSize() - Method in interface com.aspose.barcode.IBarCodeControl
 
getAztec() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the postnet.
getAztectErrorLevel() - Method in class com.aspose.barcode.BarCodeBuilder
Level of error corection of Aztect types of barcode. value should between 10 to 95
getBackColor() - Method in class com.aspose.barcode.BarCodeBuilder
 
getBackColor() - Method in interface com.aspose.barcode.IBarCodeControl
 
getBarCodeImage() - Method in class com.aspose.barcode.BarCodeBuilder
 
getBarCodeImage() - Method in interface com.aspose.barcode.IBarCodeControl
 
getBarCodeOrientation() - Method in class com.aspose.barcoderecognition.BarCodeReader
 
getBarHeight() - Method in class com.aspose.barcode.BarCodeBuilder
 
getBarHeight() - Method in interface com.aspose.barcode.IBarCodeControl
 
getBitmapImage() - Method in class com.aspose.barcoderecognition.BarCodeReader
 
getBooklandEAN() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the bookland EAN.
getBorderColor() - Method in class com.aspose.barcode.BarCodeBuilder
 
getBorderColor() - Method in interface com.aspose.barcode.IBarCodeControl
 
getBorderDashStyle() - Method in class com.aspose.barcode.BarCodeBuilder
 
getBorderDashStyle() - Method in interface com.aspose.barcode.IBarCodeControl
 
getBorderVisible() - Method in class com.aspose.barcode.BarCodeBuilder
 
getBorderVisible() - Method in interface com.aspose.barcode.IBarCodeControl
 
getBorderWidth() - Method in class com.aspose.barcode.BarCodeBuilder
 
getBorderWidth() - Method in interface com.aspose.barcode.IBarCodeControl
 
getBottom() - Method in class com.aspose.barcode.Margins
Gets or sets the bottom marign.
getBottom() - Method in class com.aspose.barcode.MarginsF
Gets or sets the bottom marign.
getCaptionAbove() - Method in class com.aspose.barcode.BarCodeBuilder
 
getCaptionAbove() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCaptionBelow() - Method in class com.aspose.barcode.BarCodeBuilder
 
getCaptionBelow() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCodabar() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the codabar.
getCodabarStartSymbol() - Method in class com.aspose.barcode.BarCodeBuilder
 
getCodabarStartSymbol() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCodabarStopSymbol() - Method in class com.aspose.barcode.BarCodeBuilder
 
getCodabarStopSymbol() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCode11() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the code11.
getCode128() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the code128.
getCode128CodeSet() - Method in class com.aspose.barcode.BarCodeBuilder
 
getCode128CodeSet() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCode39Extended() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the code39 extended.
getCode39Standard() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the code39 standard.
getCode93Extended() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the code93 extended.
getCode93Standard() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the code93 standard.
getCodeBytes() - Method in class com.aspose.barcoderecognition.BarCodeReader
 
getCodeLocation() - Method in class com.aspose.barcode.BarCodeBuilder
Specify the displaying CodeText's Location, set to CodeLocation.None to hide CodeText.
getCodeLocation() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCodeText() - Method in class com.aspose.barcode.BarCodeBuilder
 
getCodeText() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCodeText() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets the code text.
getCodeTextAlignment() - Method in class com.aspose.barcode.BarCodeBuilder
 
getCodeTextAlignment() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCodeTextAwtColor() - Method in class com.aspose.barcode.BarCodeBuilder
Gets CodeText's Color
getCodeTextAwtColor() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCodeTextAwtFont() - Method in class com.aspose.barcode.BarCodeBuilder
Specify the displaying CodeText's font
getCodeTextAwtFont() - Method in interface com.aspose.barcode.IBarCodeControl
 
getCodeTextSpace() - Method in class com.aspose.barcode.BarCodeBuilder
 
getCodeTextSpace() - Method in interface com.aspose.barcode.IBarCodeControl
 
getColumns() - Method in class com.aspose.barcode.BarCodeBuilder
 
getColumns() - Method in interface com.aspose.barcode.IBarCodeControl
 
getConfirmCheckSum() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets or sets if the checksum need to be confirmed.
getCustomerInformationInterpretingType() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other.
getCustomized() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ScanStrengthHints
 
getCustomized() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ThresholdHints
 
getCustomizedScanStrength() - Method in class com.aspose.barcoderecognition.BarCodeReader
 
getCustomizedThreshold() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets or sets the the threshold value.This property works only the ThresholdHints.Customized Hints was set.
getDataBar() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the DataBar BarCodeReadType Value: The data bar.
getDataBarLimited() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the DataBarLimited BarCodeReadType Value: The data bar limited.
getDataMatrix() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the data matrix.
getDataMatrixEncodeMode() - Method in class com.aspose.barcode.BarCodeBuilder
 
getDeutschePostIdentcode() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the DeutschePostIdentcode BarCodeReadType
getDeutschePostLeitcode() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the DetschePost Leitcode BarCodeReadType
getDownToTop() - Static method in class com.aspose.barcoderecognition.RecognitionHints.OrientationHints
 
getDpiX() - Method in class com.aspose.barcode.Resolution
Gets or sets the horizontal resolution
getDpiY() - Method in class com.aspose.barcode.Resolution
* Gets or sets the vertical resolution
getEAN128() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the EA N128.
getEAN128EncodeMode() - Method in class com.aspose.barcode.BarCodeBuilder
 
getEAN13() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the EA N13.
getEAN14() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the EA N14.
getEAN8() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the EA n8.
getEmpty() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets an empty type.
getEnableChecksum() - Method in class com.aspose.barcode.BarCodeBuilder
 
getEnableChecksum() - Method in interface com.aspose.barcode.IBarCodeControl
 
getEnableEscape() - Method in class com.aspose.barcode.BarCodeBuilder
 
getEnableEscape() - Method in interface com.aspose.barcode.IBarCodeControl
 
getExclusive() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ImageAccessHints
 
getExpectedBarCodeCount() - Method in class com.aspose.barcoderecognition.BarCodeReader
Expected barcodes to be found.The reader will stop reading the image once it found barcodes more than this value.
getFixedEnlarge() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ImageBinarizationHints
 
getFixedValues() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ThresholdHints
 
getFont() - Method in class com.aspose.barcode.Caption
Gets or sets the System.Drawing.Fontfont of the Aspose.BarCode.Captioncaption.
getForeAwtColor() - Method in class com.aspose.barcode.BarCodeBuilder
 
getForeAwtColor() - Method in interface com.aspose.barcode.IBarCodeControl
 
getForeColor() - Method in class com.aspose.barcode.Caption
Gets or sets the System.Drawing.Colorforecolor of the Aspose.BarCode.Captioncaption.
getGraphicsUnit() - Method in class com.aspose.barcode.BarCodeBuilder
 
getGraphicsUnit() - Method in interface com.aspose.barcode.IBarCodeControl
 
getGrayscale() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ImageBinarizationHints
 
getHLS() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ImageBinarizationHints
 
getIATA2of5() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the IATA 2 of 5 BarCodeReadType
getImageHeight() - Method in class com.aspose.barcode.BarCodeBuilder
 
getImageHeight() - Method in interface com.aspose.barcode.IBarCodeControl
 
getImageQuality() - Method in class com.aspose.barcode.BarCodeBuilder
 
getImageQuality() - Method in interface com.aspose.barcode.IBarCodeControl
 
getImageUnit() - Method in class com.aspose.barcode.BarCodeBuilder
Deprecated. 
getImageWidth() - Method in class com.aspose.barcode.BarCodeBuilder
 
getImageWidth() - Method in interface com.aspose.barcode.IBarCodeControl
 
getInterleaved2of5() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the interleaved2of5.
getISSN() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the ISSN BarCodeReadType
getItalianPost25() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the Italian Post 25 BarCodeReadType
getITF14() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the IT F14.
getITF14BorderType() - Method in class com.aspose.barcode.BarCodeBuilder
 
getITF6() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the ITF6 BarCodeReadType
getLeft() - Method in class com.aspose.barcode.Margins
Gets or sets the left margin.
getLeft() - Method in class com.aspose.barcode.MarginsF
Gets or sets the left margin.
getLeftToRight() - Static method in class com.aspose.barcoderecognition.RecognitionHints.OrientationHints
 
getMacroPdf417() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the macro PDF417.
getMacroPdf417FileID() - Method in class com.aspose.barcode.BarCodeBuilder
 
getMacroPdf417FileID() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets the file ID of the barcode, only available with MacroPdf417.
getMacroPdf417LastSegment() - Method in class com.aspose.barcode.BarCodeBuilder
 
getMacroPdf417LastSegment() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets the last segment flag,only available with MacroPdf417..
getMacroPdf417SegmentID() - Method in class com.aspose.barcode.BarCodeBuilder
 
getMacroPdf417SegmentID() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets the segment ID of the barcode,only available with MacroPdf417.
getMargins() - Method in class com.aspose.barcode.BarCodeBuilder
 
getMargins() - Method in interface com.aspose.barcode.IBarCodeControl
 
getMatrix2of5() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the Matrix2of5 BarCodeReadType
getMedian() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ScanStrengthHints
 
getMedianSmoothing() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ImageBinarizationHints
 
getMode() - Method in class com.aspose.barcode.Resolution
Gets or sets the ResolutionModemode of the resolution
getMSI() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the MSI.
getNone() - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
getOneCode() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the one code.
getOPC() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the OPC BarCodeReadType
getPatchCode() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the patch.
getPdf417() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the PDF417.
getPdf417CompactionMode() - Method in class com.aspose.barcode.BarCodeBuilder
 
getPdf417CompactionMode() - Method in interface com.aspose.barcode.IBarCodeControl
 
getPdf417ErrorLevel() - Method in class com.aspose.barcode.BarCodeBuilder
 
getPdf417ErrorLevel() - Method in interface com.aspose.barcode.IBarCodeControl
 
getPdf417Truncate() - Method in class com.aspose.barcode.BarCodeBuilder
 
getPdf417Truncate() - Method in interface com.aspose.barcode.IBarCodeControl
 
getPlanet() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the planet.
getPlanetShortBarHeight() - Method in class com.aspose.barcode.BarCodeBuilder
 
getPlanetShortBarHeight() - Method in interface com.aspose.barcode.IBarCodeControl
 
getPoints() - Method in class com.aspose.barcoderecognition.BarCodeRegion
Gets the points of the region.
getPostnet() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the postnet.
getPostnetShortBarHeight() - Method in class com.aspose.barcode.BarCodeBuilder
 
getPostnetShortBarHeight() - Method in interface com.aspose.barcode.IBarCodeControl
 
getPrinterName() - Method in class com.aspose.barcode.BarCodeBuilder
 
getPZN() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the PZN BarCodeReadType
getQR() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the QR.
getQREncodeMode() - Method in class com.aspose.barcode.BarCodeBuilder
QR symbology type of BarCode's encoding mode, default mode is Auto
getQRErrorLevel() - Method in class com.aspose.barcode.BarCodeBuilder
Level of Reed-Solomon error correction for QR barcode.
getReadType() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets the barcode type.
getRegion() - Method in class com.aspose.barcoderecognition.BarCodeReader
Gets the barcode region.
getResolution() - Method in class com.aspose.barcode.BarCodeBuilder
 
getResolution() - Method in interface com.aspose.barcode.IBarCodeControl
 
getRight() - Method in class com.aspose.barcode.Margins
Gets or sets the right margin.
getRight() - Method in class com.aspose.barcode.MarginsF
Gets or sets the right margin.
getRightToLeft() - Static method in class com.aspose.barcoderecognition.RecognitionHints.OrientationHints
 
getRM4SCC() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the RM4SCC BarCodeReadType
getRotationAngle() - Method in class com.aspose.barcode.BarCodeBuilder
Deprecated. 
getRotationAngleF() - Method in class com.aspose.barcode.BarCodeBuilder
BarCode image's rotation angle, measured in degree, e.g.
getRotationAngleF() - Method in interface com.aspose.barcode.IBarCodeControl
 
getRows() - Method in class com.aspose.barcode.BarCodeBuilder
 
getShared() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ImageAccessHints
 
getSpace() - Method in class com.aspose.barcode.Caption
Gets or sets the space between the Aspose.BarCode.Captioncaption and the barcode, and the space between border and the caption
getSSCC18() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the SSC C18.
getStandard2of5() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the standard2of5.
getStrong() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ScanStrengthHints
 
getSupplement() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
getSupplementData() - Method in class com.aspose.barcode.BarCodeBuilder
 
getSupplementData() - Method in interface com.aspose.barcode.IBarCodeControl
 
getSupplementSpace() - Method in class com.aspose.barcode.BarCodeBuilder
 
getSupplementSpace() - Method in interface com.aspose.barcode.IBarCodeControl
 
getSymbologyType() - Method in class com.aspose.barcode.BarCodeBuilder
 
getSymbologyType() - Method in interface com.aspose.barcode.IBarCodeControl
 
getText() - Method in class com.aspose.barcode.Caption
Gets or sets the content of the Aspose.BarCode.Captioncaption.
getTextAlign() - Method in class com.aspose.barcode.Caption
Gets or sets the text System.Drawing.StringAlignmentalignment of the Aspose.BarCode.Captioncaption.
getTextRenderingHint() - Method in class com.aspose.barcode.BarCodeBuilder
 
getTextRenderingHint() - Method in interface com.aspose.barcode.IBarCodeControl
 
getTimeout() - Method in class com.aspose.barcoderecognition.BarCodeReader
 
getTop() - Method in class com.aspose.barcode.Margins
Gets or sets the top marign.
getTop() - Method in class com.aspose.barcode.MarginsF
Gets or sets the top marign.
getTopToDown() - Static method in class com.aspose.barcoderecognition.RecognitionHints.OrientationHints
 
getUPCA() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the UPCA.
getUPCE() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the UPCE.
getValue() - Method in class com.aspose.barcoderecognition.RecognitionHints
 
getVIN() - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Gets the VIN BarCodeReadType
getVisible() - Method in class com.aspose.barcode.Caption
Gets or sets a value indicates whether the Aspose.BarCode.Captioncaption is visible.
getWeak() - Static method in class com.aspose.barcoderecognition.RecognitionHints.ScanStrengthHints
 
getWideNarrowRatio() - Method in class com.aspose.barcode.BarCodeBuilder
 
getWideNarrowRatio() - Method in interface com.aspose.barcode.IBarCodeControl
 
getxDimension() - Method in class com.aspose.barcode.BarCodeBuilder
 
getxDimension() - Method in interface com.aspose.barcode.IBarCodeControl
 
getyDimension() - Method in class com.aspose.barcode.BarCodeBuilder
 
getyDimension() - Method in interface com.aspose.barcode.IBarCodeControl
 
GIF - Static variable in class com.aspose.barcode.BarCodeImageFormat
Specifies the Graphics Interchange Format (GIF) image format.
Graphics - Static variable in class com.aspose.barcode.ResolutionMode
Apply the resolution of the barcode image according to the resolution of the specified Graphics object.
GraphicsUnit - Class in com.aspose.barcode
 
GraphicsUnit() - Constructor for class com.aspose.barcode.GraphicsUnit
 
GS1DataMatrix - Static variable in class com.aspose.barcode.Symbology
2D barcode symbology DataMatrix with GS1 string format

H

hashCode() - Method in class com.aspose.barcode.Margins
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
hashCode() - Method in class com.aspose.barcode.MarginsF
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
hashCode() - Method in class com.aspose.barcode.Resolution
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
hashCode() - Method in class com.aspose.barcoderecognition.BarCodeReadType
Returns a hash code for this instance.
hashCode() - Method in class com.aspose.barcoderecognition.RecognitionHints
Returns a hash code for this instance.

I

IATA2of5 - Static variable in class com.aspose.barcode.Symbology
Represents IATA 2 of 5 barcode.IATA (International Air Transport Assosiation) uses this barcode for the management of air cargo.
IBarCodeControl - Interface in com.aspose.barcode
IBarCodeControl
ImageQualityMode - Class in com.aspose.barcode
Specifies the quality of the created barcode image.
Inch - Static variable in class com.aspose.barcode.GraphicsUnit
 
Interleaved2of5 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with INTERLEAVED 2 of 5 barcode specification
InvalidCodeException - Exception in com.aspose.barcode
The Exception will be thrown when invalid characters contained in the code text.
InvalidCodeException(String) - Constructor for exception com.aspose.barcode.InvalidCodeException
Initialize an instance of InvalidCodeException class with the specified error message.
isEmpty() - Method in class com.aspose.barcoderecognition.BarCodeReadType
 
isSupported(BarCodeReadType) - Method in class com.aspose.barcoderecognition.BarCodeReadType
 
ItalianPost25 - Static variable in class com.aspose.barcode.Symbology
Represents Italian Post 25 barcode.
ITF14 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with ITF14 barcode specification
ITF14BorderType - Class in com.aspose.barcode
ITF14 barcode's border type
ITF6 - Static variable in class com.aspose.barcode.Symbology
Represents ITF-6 Barcode.

J

JPEG - Static variable in class com.aspose.barcode.BarCodeImageFormat
Specifies the Joint Photographic Experts Group (JPEG) image format.

L

Left - Static variable in class com.aspose.barcode.Alignment
at the left side
LEFT_TO_RIGHT - Static variable in class com.aspose.barcoderecognition.BarCodeOrientation
Level0 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level = 0
Level1 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level = 1
Level2 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level = 2
Level3 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level =3
Level4 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level =4
Level5 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level =5
Level6 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level = 6
Level7 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level = 7
Level8 - Static variable in class com.aspose.barcode.Pdf417ErrorLevel
level = 8
LevelH - Static variable in class com.aspose.barcode.QRErrorLevel
Allows recovery of 30% of the code text
LevelL - Static variable in class com.aspose.barcode.QRErrorLevel
Allows recovery of 7% of the code text
LevelM - Static variable in class com.aspose.barcode.QRErrorLevel
Allows recovery of 15% of the code text
LevelQ - Static variable in class com.aspose.barcode.QRErrorLevel
Allows recovery of 25% of the code text
License - Class in com.aspose.barcode
 
License() - Constructor for class com.aspose.barcode.License
 

M

MacroPdf417 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with MacroPdf417 barcode specification
Margins - Class in com.aspose.barcode
Specifies the margins of a barcode image.
Margins() - Constructor for class com.aspose.barcode.Margins
Initialize a new instance of MarginsMargins class with 0 margins.
Margins(int, int, int, int) - Constructor for class com.aspose.barcode.Margins
Initialize a new instance of MarginsMargins class with specified left, right, top, bottom marigns.
MarginsF - Class in com.aspose.barcode
Specifies the margins of a barcode image.
MarginsF() - Constructor for class com.aspose.barcode.MarginsF
Initialize a new instance of MarginsFMarginsF class with 0 margins.
MarginsF(float, float, float, float) - Constructor for class com.aspose.barcode.MarginsF
Initialize a new instance of MarginsFMarginsF class with specified left, right, top, bottom marigns.
Matrix2of5 - Static variable in class com.aspose.barcode.Symbology
Represents Matrix 2 of 5 BarCode
Median - Static variable in class com.aspose.barcoderecognition.RecognitionHints.ScanStrengthHints.ScanStrength
 
Middle - Static variable in class com.aspose.barcode.Alignment
in the middle
Millimeter - Static variable in class com.aspose.barcode.GraphicsUnit
 
MSI - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with MSI Plessey barcode specification

N

NinetyDegree - Static variable in class com.aspose.barcode.RotationAngle
Specifies that the rotation angle of the barcode image is 90 degree.
NONE - Static variable in class com.aspose.barcode.CodeLocation
Specifies that the code text is hidden.
None - Static variable in class com.aspose.barcode.ITF14BorderType
No border enclosing the barcode
Numeric - Static variable in class com.aspose.barcode.Pdf417CompactionMode
numeric compaction mode
Numeric - Static variable in class com.aspose.barcode.QREncodeMode
numeric mode

O

OneCode - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with USPS OneCode barcode specification
OneHundredEightyDegree - Static variable in class com.aspose.barcode.RotationAngle
Specifies that the rotation angle of the barcode image is 180 degree.
op_BitwiseAnd(BarCodeReadType, BarCodeReadType) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_BitwiseAnd(BarCodeReadType, long) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_BitwiseAnd(long, BarCodeReadType) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_BitwiseAnd(RecognitionHints, RecognitionHints) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_BitwiseAnd(RecognitionHints, long) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_BitwiseAnd(long, RecognitionHints) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_BitwiseOr(BarCodeReadType, BarCodeReadType) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_BitwiseOr(BarCodeReadType, long) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_BitwiseOr(long, BarCodeReadType) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_BitwiseOr(RecognitionHints, RecognitionHints) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_BitwiseOr(RecognitionHints, long) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_BitwiseOr(long, RecognitionHints) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_Equality(Resolution, Resolution) - Static method in class com.aspose.barcode.Resolution
Determines whether two ResolutionResolution instances are equal.
op_ExclusiveOr(BarCodeReadType, BarCodeReadType) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_ExclusiveOr(BarCodeReadType, long) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_ExclusiveOr(long, BarCodeReadType) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
op_ExclusiveOr(RecognitionHints, RecognitionHints) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_ExclusiveOr(RecognitionHints, long) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_ExclusiveOr(long, RecognitionHints) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
op_Inequality(Resolution, Resolution) - Static method in class com.aspose.barcode.Resolution
Determines whether two ResolutionResolution instances are not equal.
OPC - Static variable in class com.aspose.barcode.Symbology
Represents OPC(Optical Product Code) Barcode,also known as , VCA Barcode VCA OPC, Vision Council of America OPC Barcode.

P

parse(String, boolean) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Parses the specified value.
parse(String) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
Parses the specified value.
Patch - Static variable in class com.aspose.barcode.Symbology
Represents Patch code barcode(T barcode), supports recognition only.
Pdf417 - Static variable in class com.aspose.barcode.Symbology
2D barcode symbology Pdf417
Pdf417CompactionMode - Class in com.aspose.barcode
Pdf417 barcode's compation mode
Pdf417ErrorLevel - Class in com.aspose.barcode
pdf417 barcode's error correction level, from level 0 to level 9, level 0 means no error correction, level 9 means best error correction
Pixel - Static variable in class com.aspose.barcode.GraphicsUnit
 
Plain - Static variable in class com.aspose.barcode.EAN128EncodeMode
The CodeText will be encoded into the barcode exactly.
Planet - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Planet barcode specification
Platform - Static variable in class com.aspose.barcode.BuildVersionInfo
The product platform
PNG - Static variable in class com.aspose.barcode.BarCodeImageFormat
Specifies the W3C Portable Network Graphics (PNG) image format.
Point - Static variable in class com.aspose.barcode.GraphicsUnit
 
Postnet - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Postnet barcode specification
Printer - Static variable in class com.aspose.barcode.ResolutionMode
Apply the resolution of the barcode image according to the resolution of the specified printer.
Product - Static variable in class com.aspose.barcode.BuildVersionInfo
The product title.
ProductMajor - Static variable in class com.aspose.barcode.BuildVersionInfo
The major product version.
ProductMinor - Static variable in class com.aspose.barcode.BuildVersionInfo
The minor product version.
PZN - Static variable in class com.aspose.barcode.Symbology
Represents PZN barcode.This Symbology is also known as Pharma Zentral Nummer,Pharmazentralnummer

Q

QR - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with QR Code barcode specification
QREncodeMode - Class in com.aspose.barcode
QR barcode's encoding mode
QRErrorLevel - Class in com.aspose.barcode
Level of Reed-Solomon error correction.

R

read() - Method in class com.aspose.barcoderecognition.BarCodeReader
Reads barcode from the image.
RecognitionHints - Class in com.aspose.barcoderecognition
 
RecognitionHints.ImageAccessHints - Class in com.aspose.barcoderecognition
 
RecognitionHints.ImageBinarizationHints - Class in com.aspose.barcoderecognition
 
RecognitionHints.OrientationHints - Class in com.aspose.barcoderecognition
 
RecognitionHints.ScanStrengthHints - Class in com.aspose.barcoderecognition
 
RecognitionHints.ScanStrengthHints.ScanStrength - Class in com.aspose.barcoderecognition
 
RecognitionHints.ThresholdHints - Class in com.aspose.barcoderecognition
 
REDIRECTION - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Redirection BarCode
ReleaseDate - Static variable in class com.aspose.barcode.BuildVersionInfo
The product release date.
REPLY_PAID - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Reply Paid BarCode
Resolution - Class in com.aspose.barcode
The resolution infomation of the barcode image
Resolution(float, float, int) - Constructor for class com.aspose.barcode.Resolution
Initialize an instance of ResolutionResolution.
ResolutionMode - Class in com.aspose.barcode
Specifies the resolution mode used to create barcode image.
Right - Static variable in class com.aspose.barcode.Alignment
at the right side
RIGHT_TO_LEFT - Static variable in class com.aspose.barcoderecognition.BarCodeOrientation
RM4SCC - Static variable in class com.aspose.barcode.Symbology
Represents RM4SCC barcode.
rotate() - Method in class com.aspose.barcode.BarCodeBuilder
Rotate barcode image clockwise for 90 degrees
rotate(float) - Method in class com.aspose.barcode.BarCodeBuilder
Rotate barcode image clockwise
rotate(int, float) - Method in class com.aspose.barcode.BarCodeBuilder
Rotate the barcode image
rotate(int) - Method in class com.aspose.barcode.BarCodeBuilder
Rotate the barcode image
rotate(int, int) - Method in class com.aspose.barcode.BarCodeBuilder
Rotate the barcode image
rotate() - Method in interface com.aspose.barcode.IBarCodeControl
 
rotate(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
rotate(int, int) - Method in interface com.aspose.barcode.IBarCodeControl
 
rotate(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
rotate(int, float) - Method in interface com.aspose.barcode.IBarCodeControl
 
RotationAngle - Class in com.aspose.barcode
Specifies the rotation angle of the barcode image.
RotationDirection - Class in com.aspose.barcode
Rotation Direction, must be the following: Clockwise or AntiClockwise
ROUTING - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Routing BarCode

S

save(OutputStream, int) - Method in class com.aspose.barcode.BarCodeBuilder
 
save(InputStream, ImageFormat) - Method in class com.aspose.barcode.BarCodeBuilder
 
save(InputStream, int) - Method in class com.aspose.barcode.BarCodeBuilder
 
save(String) - Method in class com.aspose.barcode.BarCodeBuilder
Save BarCodeImage to specific file in specific format
save(String, ImageFormat) - Method in class com.aspose.barcode.BarCodeBuilder
Save BarCodeImage to specific file in specific format
save(String, int) - Method in class com.aspose.barcode.BarCodeBuilder
Save BarCodeImage to specific file in specific format
save(String) - Method in interface com.aspose.barcode.IBarCodeControl
 
save(InputStream, ImageFormat) - Method in interface com.aspose.barcode.IBarCodeControl
 
save(String, ImageFormat) - Method in interface com.aspose.barcode.IBarCodeControl
 
saveImageAs(String) - Method in class com.aspose.barcode.BarCodeBuilder
Save the barcode image
saveImageAs(InputStream, ImageFormat) - Method in class com.aspose.barcode.BarCodeBuilder
 
saveImageAs(String, ImageFormat) - Method in class com.aspose.barcode.BarCodeBuilder
Deprecated. 
setAlwaysShowChecksum(boolean) - Method in class com.aspose.barcode.BarCodeBuilder
 
setAspectRatio(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setAspectRatio(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setAustralianPosteParcelCodeSet(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setAustraliaPostFormatControlCode(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setAustraliaPostFormatControlCode(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setAutoSize(boolean) - Method in class com.aspose.barcode.BarCodeBuilder
 
setAutoSize(boolean) - Method in interface com.aspose.barcode.IBarCodeControl
 
setAztectErrorLevel(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setBackColor(Color) - Method in class com.aspose.barcode.BarCodeBuilder
 
setBackColor(Color) - Method in interface com.aspose.barcode.IBarCodeControl
 
setBackColorInternal(Color) - Method in class com.aspose.barcode.BarCodeBuilder
 
setBarHeight(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setBarHeight(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setBorderColor(Color) - Method in class com.aspose.barcode.BarCodeBuilder
 
setBorderColor(Color) - Method in interface com.aspose.barcode.IBarCodeControl
 
setBorderDashStyle(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setBorderDashStyle(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setBorderVisible(boolean) - Method in class com.aspose.barcode.BarCodeBuilder
 
setBorderVisible(boolean) - Method in interface com.aspose.barcode.IBarCodeControl
 
setBorderWidth(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setBorderWidth(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setBottom(int) - Method in class com.aspose.barcode.Margins
 
setBottom(float) - Method in class com.aspose.barcode.MarginsF
 
setCaptionAbove(Caption) - Method in class com.aspose.barcode.BarCodeBuilder
 
setCaptionAbove(Caption) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCaptionBelow(Caption) - Method in class com.aspose.barcode.BarCodeBuilder
 
setCaptionBelow(Caption) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCodabarStartSymbol(short) - Method in class com.aspose.barcode.BarCodeBuilder
 
setCodabarStartSymbol(short) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCodabarStopSymbol(short) - Method in class com.aspose.barcode.BarCodeBuilder
 
setCodabarStopSymbol(short) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCode128CodeSet(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setCode128CodeSet(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCodeLocation(int) - Method in class com.aspose.barcode.BarCodeBuilder
Specify the displaying CodeText's Location, set to CodeLocation.None to hide CodeText.
setCodeLocation(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCodeText(String) - Method in class com.aspose.barcode.BarCodeBuilder
 
setCodeText(byte[]) - Method in class com.aspose.barcode.BarCodeBuilder
Set the data to be encoded.
setCodeText(String) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCodeTextAlignment(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setCodeTextAlignment(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCodeTextColor(Color) - Method in class com.aspose.barcode.BarCodeBuilder
Specify the displaying CodeText's Color
setCodeTextColor(Color) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCodeTextFont(Font) - Method in class com.aspose.barcode.BarCodeBuilder
Specify the displaying CodeText's font
setCodeTextFont(Font) - Method in interface com.aspose.barcode.IBarCodeControl
 
setCodeTextSpace(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setCodeTextSpace(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setColumns(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setColumns(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setConfirmCheckSum(boolean) - Method in class com.aspose.barcoderecognition.BarCodeReader
 
setCustomerInformationInterpretingType(int) - Method in class com.aspose.barcoderecognition.BarCodeReader
 
setCustomizedScanStrength(int) - Method in class com.aspose.barcoderecognition.BarCodeReader
 
setCustomizedThreshold(int) - Method in class com.aspose.barcoderecognition.BarCodeReader
 
setDataMatrixEncodeMode(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setDpiX(float) - Method in class com.aspose.barcode.Resolution
 
setDpiY(float) - Method in class com.aspose.barcode.Resolution
 
setEAN128EncodeMode(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setEnableChecksum(boolean) - Method in class com.aspose.barcode.BarCodeBuilder
 
setEnableChecksum(boolean) - Method in interface com.aspose.barcode.IBarCodeControl
 
setEnableEscape(boolean) - Method in class com.aspose.barcode.BarCodeBuilder
 
setEnableEscape(boolean) - Method in interface com.aspose.barcode.IBarCodeControl
 
setExpectedBarCodeCount(int) - Method in class com.aspose.barcoderecognition.BarCodeReader
 
setFont(Font) - Method in class com.aspose.barcode.Caption
 
setForeColor(Color) - Method in class com.aspose.barcode.BarCodeBuilder
 
setForeColor(Color) - Method in class com.aspose.barcode.Caption
 
setForeColor(Color) - Method in interface com.aspose.barcode.IBarCodeControl
 
setGraphicsUnit(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setGraphicsUnit(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setHints(RecognitionHints) - Method in class com.aspose.barcoderecognition.BarCodeReader
 
setImageHeight(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setImageHeight(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setImageQuality(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setImageQuality(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setImageUnit(int) - Method in class com.aspose.barcode.BarCodeBuilder
Deprecated. 
setImageWidth(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setImageWidth(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setITF14BorderType(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setLeft(int) - Method in class com.aspose.barcode.Margins
 
setLeft(float) - Method in class com.aspose.barcode.MarginsF
 
setLicense(String) - Method in class com.aspose.barcode.License
 
setLicense(InputStream) - Method in class com.aspose.barcode.License
 
setMacroPdf417FileID(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setMacroPdf417LastSegment(boolean) - Method in class com.aspose.barcode.BarCodeBuilder
 
setMacroPdf417SegmentID(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setMargins(MarginsF) - Method in class com.aspose.barcode.BarCodeBuilder
 
setMargins(MarginsF) - Method in interface com.aspose.barcode.IBarCodeControl
 
setMode(int) - Method in class com.aspose.barcode.Resolution
 
setPdf417CompactionMode(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setPdf417CompactionMode(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setPdf417ErrorLevel(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setPdf417ErrorLevel(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setPdf417Truncate(boolean) - Method in class com.aspose.barcode.BarCodeBuilder
 
setPdf417Truncate(boolean) - Method in interface com.aspose.barcode.IBarCodeControl
 
setPlanetShortBarHeight(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setPlanetShortBarHeight(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setPostnetShortBarHeight(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setPostnetShortBarHeight(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setPrinterName(String) - Method in class com.aspose.barcode.BarCodeBuilder
 
setQREncodeMode(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setQRErrorLevel(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setResolution(Resolution) - Method in class com.aspose.barcode.BarCodeBuilder
 
setResolution(Resolution) - Method in interface com.aspose.barcode.IBarCodeControl
 
setRight(int) - Method in class com.aspose.barcode.Margins
 
setRight(float) - Method in class com.aspose.barcode.MarginsF
 
setRotationAngleF(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setRotationAngleF(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setRows(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setSpace(float) - Method in class com.aspose.barcode.Caption
 
setSupplementData(String) - Method in class com.aspose.barcode.BarCodeBuilder
 
setSupplementData(String) - Method in interface com.aspose.barcode.IBarCodeControl
 
setSupplementSpace(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setSupplementSpace(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setSymbologyType(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setSymbologyType(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setText(String) - Method in class com.aspose.barcode.Caption
 
setTextAlign(int) - Method in class com.aspose.barcode.Caption
 
setTextRenderingHint(int) - Method in class com.aspose.barcode.BarCodeBuilder
 
setTextRenderingHint(int) - Method in interface com.aspose.barcode.IBarCodeControl
 
setTimeout(int) - Method in class com.aspose.barcoderecognition.BarCodeReader
 
setTop(int) - Method in class com.aspose.barcode.Margins
 
setTop(float) - Method in class com.aspose.barcode.MarginsF
 
setVisible(boolean) - Method in class com.aspose.barcode.Caption
 
setWideNarrowRatio(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setWideNarrowRatio(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setxDimension(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setxDimension(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
setYDimension(float) - Method in class com.aspose.barcode.BarCodeBuilder
 
setYDimension(float) - Method in interface com.aspose.barcode.IBarCodeControl
 
SingaporePost - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Singapore Post Barcode barcode specification
Solid - Static variable in class com.aspose.barcode.BorderDashStyle
Specifies a solid line.
SSCC18 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with SSCC18 barcode specification
STANDARD - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Standard Customer BarCode
Standard2of5 - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with Standard 2 of 5 barcode specification
Strong - Static variable in class com.aspose.barcoderecognition.RecognitionHints.ScanStrengthHints.ScanStrength
 
switch1(int) - Method in class com.aspose.barcode.Code128CodeBuilder
 
switchTo(int) - Method in class com.aspose.barcode.Code128CodeBuilder
 
Symbology - Class in com.aspose.barcode
Specifies the type of barcode specification.

T

Text - Static variable in class com.aspose.barcode.Pdf417CompactionMode
text compaction
TIFF - Static variable in class com.aspose.barcode.BarCodeImageFormat
Specifies the Tagged Image File Format (TIFF) image format.
toBarCodeReadType(long) - Static method in class com.aspose.barcoderecognition.BarCodeReadType
 
Top - Static variable in class com.aspose.barcode.Alignment
top middle
TOP_TO_DOWN - Static variable in class com.aspose.barcoderecognition.BarCodeOrientation
TopLeft - Static variable in class com.aspose.barcode.Alignment
at the top left corner
TopRight - Static variable in class com.aspose.barcode.Alignment
at the top right corner
toRecognitionHints(long) - Static method in class com.aspose.barcoderecognition.RecognitionHints
 
toString() - Method in class com.aspose.barcode.BarCodeBuilder
overried to string method
toString() - Method in class com.aspose.barcode.Code128CodeBuilder
 
toString() - Method in class com.aspose.barcode.Margins
Returns a String that represents the current MarginsMargins instance.
toString() - Method in class com.aspose.barcode.MarginsF
Returns a String that represents the current MarginsFMarginsF instance.
toString() - Method in class com.aspose.barcode.Resolution
Returns a String that represents the current ResolutionResolution instance.
toString() - Method in class com.aspose.barcoderecognition.BarCodeReadType
Returns a T:System.String that represents the current T:System.Object.
toString() - Method in class com.aspose.barcoderecognition.RecognitionHints
Returns a T:System.String that represents the current T:System.Object.
TwoHundredSeventyDegree - Static variable in class com.aspose.barcode.RotationAngle
Specifies that the rotation angle of the barcode image is 270 degree.

U

UN_KNOW - Static variable in class com.aspose.barcoderecognition.BarCodeOrientation
UnKnow
UPCA - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with UPC-A barcode specification
UPCE - Static variable in class com.aspose.barcode.Symbology
Specifies that the data should be encoded with UPC-E barcode specification

V

VIN - Static variable in class com.aspose.barcode.Symbology
Represents VIN (Vehicle Identification Number) Barcode.

W

Weak - Static variable in class com.aspose.barcoderecognition.RecognitionHints.ScanStrengthHints.ScanStrength
 
World - Static variable in class com.aspose.barcode.GraphicsUnit
 

Z

ZeroDegree - Static variable in class com.aspose.barcode.RotationAngle
Specifies that the rotation angle of the barcode image is 0 degree.

_

_GetBarCodeReadType() - Method in class com.aspose.barcoderecognition.BarCodeReadType
 

A B C D E F G H I J L M N O P Q R S T U V W Z _

Copyright (c) 2002-2012 Aspose Pty Ltd. All Rights Reserved.