Class RadBarcodeReader
Represents a barcode reader that can decode a bitmap image.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.Barcode
Assembly: Telerik.WinControls.UI.dll
Syntax
public class RadBarcodeReader
Constructors
RadBarcodeReader()
Constructor of RadBarcodeReader.
Declaration
public RadBarcodeReader()
Methods
Decode(Bitmap, BarcodeType)
Decodes a bitmap image based on given barcode types.
Declaration
public DecodeResult Decode(Bitmap bitmap, BarcodeType barcodeType)
Parameters
System.Drawing.Bitmap
bitmap
|
BarcodeType
barcodeType
|
Returns
DecodeResult
Returns the decode result with best confidence that contains the value, barcode type and the success confidence. |
Decode(Int32[,], BarcodeType)
Decodes a pixel matrix with argb values based on given barcode types.
Declaration
public DecodeResult Decode(int[, ] pixelMatrix, BarcodeType barcodeType)
Parameters
System.Int32[,]
pixelMatrix
|
BarcodeType
barcodeType
|
Returns
DecodeResult
Returns the decode result with best confidence that contains the value, barcode type and the success confidence. |
DecodeAll(Bitmap, BarcodeType)
Decodes a bitmap image based on given barcode types.
Declaration
public List<DecodeResult> DecodeAll(Bitmap bitmap, BarcodeType barcodeType)
Parameters
System.Drawing.Bitmap
bitmap
|
BarcodeType
barcodeType
|
Returns
System.Collections.Generic.List<DecodeResult>
Returns a list of decode results. |
DecodeAll(Int32[,], BarcodeType)
Decodes a pixel matrix with argb values based on given barcode types.
Declaration
public List<DecodeResult> DecodeAll(int[, ] pixelMatrix, BarcodeType barcodeType)
Parameters
System.Int32[,]
pixelMatrix
|
BarcodeType
barcodeType
|
Returns
System.Collections.Generic.List<DecodeResult>
Returns a list of decode results. |
GetPixelMatrix(Bitmap)
Generates a pixel matrix based on a give bitmap.
Declaration
public int[, ] GetPixelMatrix(Bitmap bitmap)
Parameters
System.Drawing.Bitmap
bitmap
|
Returns
System.Int32[,]
|