IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
Class for storing image data and exporting and importing images froom files and different types of objects. More...
Public Member Functions | |
ImageBuilder () | |
ImageBuilder (System.Drawing.Bitmap bitmap) | |
override void | InitData () |
Hardcoded initialization of data. More... | |
![]() | |
ImageBuilderBase () | |
ImageBuilderBase (System.Drawing.Bitmap bitmap) | |
void | ClearData () |
Clears the data that holds image information. More... | |
System.Drawing.Bitmap | ToBitmap () |
Creates and returns a bitmap object from the current image data. More... | |
void | FromBitmap (System.Drawing.Bitmap bitmap) |
Copies image data from the specified bitmap. More... | |
void | FromBitmap (System.Drawing.Bitmap bitmap, bool extractColorComponents, bool extractGreyLevels) |
Copies image data from the specified bitmap. More... | |
void | FromCsv (CsvData csv) |
Copies image data from the specified CsvData. More... | |
void | LoadCsv (string filePath) |
Reads image data from the specified file in CSV format. More... | |
void | ToCsv (ref CsvData csv) |
Write the current image data to a CSV object. More... | |
string | ToCsvString () |
Returns a CSV string containing current image data written in the CSV (comma separated values) form. More... | |
void | SaveCsv (string filePath) |
Saves image data to the specified file in CSV format. More... | |
Additional Inherited Members | |
![]() | |
const string | ConstImage = "Image" |
![]() | |
int | _sizeX = 0 |
int | _sizeY = 0 |
double[] | _red = null |
double[] | _green = null |
double[] | _blue = null |
double[] | _grey = null |
double[] | _opacity = null |
IG.Lib.CsvData | _csv = null |
Class for storing image data and exporting and importing images froom files and different types of objects.
|
inline |
|
inline |
|
inlinevirtual |
Hardcoded initialization of data.
Implements IG.Lib.ImageBuilderBase.