ImageGear for .NET
GetImage Method
See Also  Send Feedback
ImageGear21.Core Assembly > ImageGear.Core Namespace > ImGearDIB Class : GetImage Method




Glossary Item Box

Returns a reference to raw image store. Should be used to gain direct access to image pixels.

Syntax

 
Visual Basic
C#
Managed Extensions for C++
C++/CLI
 
 

Return Value

ImGearArrayRef structure instance.

Remarks

May be used to obtain direct access to the entire image store.

Structure of image store depends on channels structure and may differ for different DIBs.

Rasters in ImageGear for .NET pixel storage are DWORD-aligned.

Raster size for standard DIBs (not run-ends) in ImageGear for .NET can be calculated using the following formula:

((Width * BitsPerChannel * ChannelCount + 31) & ~31) / BitsPerChannel

Note that the +31 and & ~31 indicate DWORD alignment.

See Also

©2013. Accusoft Corporation. All Rights Reserved.