Property | Type | Description | |
---|---|---|---|
Dispose | void | ||
addSampleRow | void | ||
compress | void | ||
compress | void | ||
createFromBitmap | void | ||
createFromStream | void | ||
decompress | void | ||
fillDecompressedData | void | ||
fillSamplesFromBitmap | void | ||
initializeFromBitmap | void | ||
isCompressed | bool | ||
needCompressWith | bool | ||
processPixelFormat | void |
Method | Description | |
---|---|---|
Dispose ( ) : void |
Frees and releases all resources allocated by this JpegImage
|
|
FromBitmap ( |
Creates JpegImage from Same as corresponding |
|
GetRow ( int rowNumber ) : |
Retrieves the required row of image.
|
|
JpegImage ( Stream imageData ) : System |
Creates JpegImage from stream with an arbitrary image data
|
|
JpegImage ( System bitmap ) : System |
Creates JpegImage from
|
|
JpegImage ( string fileName ) : System |
Creates JpegImage from file with an arbitrary image
|
|
ToBitmap ( ) : |
Retrieves image as .NET Bitmap.
|
|
WriteBitmap ( Stream output ) : void |
Writes decompressed image data as bitmap to stream.
|
|
WriteJpeg ( Stream output ) : void |
Writes compressed JPEG image to stream.
|
|
WriteJpeg ( Stream output, |
Compresses image to JPEG with given parameters and writes it to stream.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void | ||
addSampleRow ( |
Needs for DecompressorToJpegImage class
|
|
compress ( |
||
compress ( IRawImage source, |
||
createFromBitmap ( System bitmap ) : void | ||
createFromStream ( Stream imageData ) : void | ||
decompress ( ) : void | ||
fillDecompressedData ( ) : void | ||
fillSamplesFromBitmap ( ) : void | ||
initializeFromBitmap ( |
||
isCompressed ( Stream imageData ) : bool |
Checks if imageData contains jpeg image
|
|
needCompressWith ( |
||
processPixelFormat ( PixelFormat pixelFormat ) : void |
public static FromBitmap ( |
||
bitmap | Source .NET bitmap. | |
return |
public GetRow ( int rowNumber ) : |
||
rowNumber | int | The number of row. |
return |
public JpegImage ( Stream imageData ) : System | ||
imageData | Stream | Stream containing bytes of image in /// arbitrary format (BMP, Jpeg, GIF, PNG, TIFF, e.t.c) |
return | System |
public JpegImage ( System bitmap ) : System | ||
bitmap | System | Source .NET bitmap. |
return | System |
public JpegImage ( string fileName ) : System | ||
fileName | string | Path to file with image in /// arbitrary format (BMP, Jpeg, GIF, PNG, TIFF, e.t.c) |
return | System |
public WriteBitmap ( Stream output ) : void | ||
output | Stream | Output stream. |
return | void |
public WriteJpeg ( Stream output ) : void | ||
output | Stream | Output stream. |
return | void |
public WriteJpeg ( Stream output, |
||
output | Stream | Output stream. |
parameters | The parameters of compression. | |
return | void |