Method | Description | |
---|---|---|
AutoCrop ( |
Autocrops an image.
|
|
Brighten ( Image bmp, float value ) : Image |
Brightens an image.
|
|
CloneImage ( |
Clones a bitmap using DrawImage.
|
|
Contrast ( Image bmp, float value ) : Image |
Constrasts an image. http://bobpowell.net/image_contrast.aspx
|
|
ConvertGrayscale ( Image input ) : Image |
Converts an image to 8bpp indexed grayscale. http://www.codeproject.com/Articles/70442/C-RGB-to-Palette-Based-bit-Greyscale-Bitmap-Clas
|
|
ConvertMonochrome ( |
Converts an image to monochrome. http://bobpowell.net/onebit.aspx
|
|
Crop ( Image image, |
Crops an image.
|
|
GaussianBlur ( |
||
GetClipboardImage ( ) : Image |
Gets an Image from Clipboard.
|
|
InvertColor ( |
Inverts color of an image. http://mariusbancila.ro/blog/2009/11/13/using-colormatrix-for-creating-negative-image/
|
|
RemoveLines ( |
Remove lines or borders using Leptonica library.
|
|
Rescale ( Image image, int dpiX, int dpiY ) : Image |
Rescales an image.
|
|
Rotate ( Image image, double angle ) : |
Rotates an image.
|
|
Sharpen ( |
Sharpens an image. http://stackoverflow.com/questions/903632/sharpen-on-a-bitmap-using-c-sharp
|
Method | Description | |
---|---|---|
SetIndexedPixel ( int x, int y, |
Method | Description | |
---|---|---|
ConvolutionFilter ( |
http://softwarebydefault.com/2013/06/09/image-blur-filters/
|
|
colorWithinTolerance ( Color a, Color b, double tolerance ) : bool |
Determines color distance. http://stackoverflow.com/questions/10678015/how-to-auto-crop-an-image-white-border-in-java
|
public static AutoCrop ( |
||
source | ||
tolerance | double | range from 0.0 to 1.0 |
return |
public static Brighten ( Image bmp, float value ) : Image | ||
bmp | Image | |
value | float | |
return | Image |
public static CloneImage ( |
||
bmp | ||
return |
public static Contrast ( Image bmp, float value ) : Image | ||
bmp | Image | |
value | float | |
return | Image |
public static ConvertGrayscale ( Image input ) : Image | ||
input | Image | |
return | Image |
public static ConvertMonochrome ( |
||
img | ||
return |
public static Crop ( Image image, |
||
image | Image | |
cropArea | ||
return | Image |
public static GaussianBlur ( |
||
sourceBitmap | ||
return |
public static InvertColor ( |
||
img | ||
return |
public static RemoveLines ( |
||
image | ||
return |
public static Rescale ( Image image, int dpiX, int dpiY ) : Image | ||
image | Image | |
dpiX | int | |
dpiY | int | |
return | Image |
public static Rotate ( Image image, double angle ) : |
||
image | Image | |
angle | double | |
return |
protected static SetIndexedPixel ( int x, int y, |
||
x | int | |
y | int | |
bmd | ||
pixel | bool | |
return | void |
public static Sharpen ( |
||
image | ||
return |