ImagePlane::ImagePlane

ImagePlane::ImagePlane
ImagePlane();
ImagePlane(UInt32 width, UInt32 height, UPInt pitch, UPInt dataSize = 0, UByte* pdata = 0);
ImagePlane(const ImageSize & sz, UPInt pitch, UPInt dataSize = 0, UByte* pdata = 0);
ImagePlane(const ImagePlane& src);
Description

ImagePlane constructor.

Parameters
Parameters 
Description 
UInt32 width 
The width of the image in pixels. 
UInt32 height 
The height of the image in pixels. 
UPInt pitch 
The pitch of the image. 
UPInt dataSize = 0 
The size of the image data in bytes. 
UByte* pdata = 0 
Pointer to the first byte of the image data in memory. 
const ImageSize & sz 
The size of the image. 
const ImagePlane& src 
Reference to another ImagePlane that is used to initialize the new ImagePlane.