Method | Description | |
---|---|---|
ApplyProcessor ( Image>.Func |
Applies the given processor the current image.
|
|
Load ( Stream stream ) : Image |
Decodes the image to process.
|
|
Save ( Stream stream, Image image, long bitDepth ) : Image |
Saves the current image to the specified output stream.
|
|
Save ( string path, Image image, long bitDepth ) : Image |
Saves the current image to the specified file path.
|
Method | Description | |
---|---|---|
Decode ( byte webpData ) : |
Decodes a WebP image
|
|
EncodeLosslessly ( |
Losslessly encodes the image in bitmap.
|
|
EncodeLossly ( |
Lossy encodes the image in bitmap.
|
public ApplyProcessor ( Image>.Func |
||
processor | Image>.Func | The processor delegate. |
factory | ImageFactory | The |
return | void |
public Load ( Stream stream ) : Image | ||
stream | Stream |
/// The |
return | Image |
public Save ( Stream stream, Image image, long bitDepth ) : Image | ||
stream | Stream |
/// The |
image | Image |
/// The |
bitDepth | long | /// The color depth in number of bits per pixel to save the image with. /// |
return | Image |
public Save ( string path, Image image, long bitDepth ) : Image | ||
path | string | The path to save the image to. |
image | Image |
/// The |
bitDepth | long | /// The color depth in number of bits per pixel to save the image with. /// |
return | Image |