PlainType
Description
// Represents Image pixels' underlying type.
namespace PlainType
{
	enum Type
	{
		Int8,	//Pixel values from -127 to 128. Most popular type.
		UInt8,	//Pixel values from 0 to 255.
		Int16,	//Pixel values from -32768 to 32767.
		UInt16,	//Pixel values from 0 to 65535.
		Int32,	//Pixel values from -2147483648 to 2147483647.
		Real	//Floating point values.
	};	
}
Values of this enumeration:
- Int8
 - UInt8
 - Int16
 - UInt16
 - Int32
 - Real
 
