Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.12.17
DecodeAbic Method
See Also 
Leadtools.Codecs Namespace > RasterCodecs Class : DecodeAbic Method




Decodes the input ABIC data using the ABIC decoder and returns raw uncompressed data.

Overload List

OverloadDescription
DecodeAbic(Byte[],Int32,Int32,Int32,Boolean) Decodes the input ABIC data using the ABIC decoder and returns raw uncompressed data.  
DecodeAbic(RasterNativeBuffer,Int32,Int32,Int32,Boolean) Decodes the input ABIC unmanaged memory data using the ABIC decoder and returns raw uncompressed data.  

Example

For an example, refer to EncodeAbic.

Remarks

Call this method to decompress the input 1-bit bi-level or 4-bit grayscale ABIC data.

Use EncodeAbic to encode ABIC data.

The output buffer in the RasterNativeBuffer object returned is allocated automatically by this method. The user is responsible to free this unmanaged memory buffer by calling Marshal.FreeHGlobal as follows:


RasterNativeBuffer buffer = rasterCodecsObject.EncodeAbic(...
// Use buffer
Marshal.FreeHGlobal(buffer.Data);

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also