Property | Type | Description | |
---|---|---|---|
Image | System | ||
ReleaseAllocatedUnmanagedMemory | void | ||
zbar_image_convert | |||
zbar_image_convert_resize | |||
zbar_image_create | |||
zbar_image_destroy | void | ||
zbar_image_first_symbol | |||
zbar_image_free_data | void | ||
zbar_image_get_data | |||
zbar_image_get_data_length | uint | ||
zbar_image_get_format | uint | ||
zbar_image_get_height | uint | ||
zbar_image_get_sequence | uint | ||
zbar_image_get_userdata | |||
zbar_image_get_width | uint | ||
zbar_image_ref | void | ||
zbar_image_set_data | void | ||
zbar_image_set_format | void | ||
zbar_image_set_sequence | void | ||
zbar_image_set_size | void | ||
zbar_image_set_userdata | void |
Method | Description | |
---|---|---|
Convert ( uint format ) : Image |
Image format conversion. refer to the documentation for supported image formats The converted image size may be rounded (up) due to format constraints. See Image.FourCC for how to get the fourCC code. |
|
Dispose ( ) : void |
Release resources held by this object
|
|
FourCC ( char c0, char c1, char c2, char c3 ) : uint |
Get FourCC code from four chars See FourCC.org for more information on FourCC. For information on format supported by zbar see: http://sourceforge.net/apps/mediawiki/zbar/index.php?title=Supported_image_formats |
|
Image ( ) : System |
Create/allocate a new uninitialized image Be aware that this image is NOT initialized, allocated. And you must set width, height, format, data etc... |
|
Image ( System image ) : System |
Create image from an instance of System.Drawing.Image The converted image is in RGB3 format, so it should be converted using Image.Convert() before it is scanned, as ZBar only reads images in GREY/Y800 |
|
ToBitmap ( ) : |
Convert bitmap
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Dispose this object This boolean disposing parameter here ensures that objects with a finalizer is not disposed, this is method is invoked from the finalizer. Do overwrite, and call, this method in base classes if you use any unmanaged resources. |
Method | Description | |
---|---|---|
Image ( |
Create a new image from a pointer to an unmanaged resource This resource will be managed by this Image instance. |
|
ReleaseAllocatedUnmanagedMemory ( |
||
zbar_image_convert ( |
||
zbar_image_convert_resize ( |
||
zbar_image_create ( ) : |
||
zbar_image_destroy ( |
||
zbar_image_first_symbol ( |
||
zbar_image_free_data ( |
||
zbar_image_get_data ( |
||
zbar_image_get_data_length ( |
||
zbar_image_get_format ( |
||
zbar_image_get_height ( |
||
zbar_image_get_sequence ( |
||
zbar_image_get_userdata ( |
||
zbar_image_get_width ( |
||
zbar_image_ref ( |
||
zbar_image_set_data ( |
||
zbar_image_set_format ( |
||
zbar_image_set_sequence ( |
||
zbar_image_set_size ( |
||
zbar_image_set_userdata ( |
public Convert ( uint format ) : Image | ||
format | uint | /// FourCC format to convert to. /// |
return | Image |
protected Dispose ( bool disposing ) : void | ||
disposing | bool |
/// A |
return | void |
public static FourCC ( char c0, char c1, char c2, char c3 ) : uint | ||
c0 | char | |
c1 | char | |
c2 | char | |
c3 | char | |
return | uint |
public Image ( System image ) : System | ||
image | System | /// Image to convert to ZBar.Image /// |
return | System |