메소드 |
설명 |
|
FitToControl ( System ctrl ) : Bitmap |
|
|
FitToControl ( System ctrl, InterpolationMode iMode ) : Bitmap |
The idea here is to stop image from stretching. |
|
ImagingTool ( Image inputImage ) : System |
|
|
ImagingTool ( Image inputImage, IColourMap cmap ) : System |
|
|
ReduceColourDepth ( object o, BackgroundWorker w, DoWorkEventArgs e ) : object |
|
|
ReduceColourDepth ( ) : void |
This is the simplest method - it just truncates to RGB555. if Image has N pixels, total time ~= N. |
|
ReduceColourDepth ( IColourMap cmap ) : void |
Convert colours to fit a given colourmap |
|
ReduceColourDepth ( int maxColours ) : void |
|
|
RemoveFromPalette ( Color colorToRemove ) : void |
|
|
RemoveFromPalette ( IColourInfo colorToRemove ) : void |
|
|
ReplaceColour ( Color colorToReplace, Color newColor ) : void |
|
|
ReplaceColoursWithPatterns ( object p, BackgroundWorker w, DoWorkEventArgs e ) : object |
|
|
ReplaceColoursWithPatterns ( PatternEditor patterns ) : void |
|
|
ResizeImage ( Size size ) : void |
|
|
ResizeImage ( Size size, InterpolationMode iMode ) : void |
|
|
UpdateColourMapFrequency ( ) : void |
Resets ColourInfo.Frequency fields to the number of times that colour appears in the image. If Image has N pixels, and ColourMap has M colours, total time = M + Nlog(M) ~= N |
|
UpdateColourMapFromImage ( ) : void |
Resets ColourInfo.Frequency fields, and removes colour not present in Colourmap. If Image has N pixels, and ColourMap has M colours, total time = 3M + Nlog(M) ~= N |
|