#include <icl/imageprocessor.h>
class CImageProcessor : public CBase |
Public Member Functions | |
---|---|
pure virtual TBool | FlushPixels() |
pure virtual void | PrepareL(CFbsBitmap &, const TRect &) |
pure virtual void | PrepareL(CFbsBitmap &, const TRect &, const TSize &) |
pure virtual void | SetLineRepeat(TInt) |
pure virtual TBool | SetMonoPixel(TInt) |
pure virtual TBool | SetMonoPixelBlock(TUint32 *) |
pure virtual TBool | SetMonoPixelRun(TInt, TInt) |
pure virtual TBool | SetMonoPixels(TUint32 *, TInt) |
pure virtual TBool | SetPixel(TRgb) |
pure virtual TBool | SetPixelBlock(TRgb *) |
pure virtual void | SetPixelPadding(TInt) |
pure virtual TBool | SetPixelRun(TRgb, TInt) |
pure virtual TBool | SetPixels(TRgb *, TInt) |
pure virtual TBool | SetPos(const TPoint &) |
pure virtual void | SetYPosIncrement(TInt) |
Interface to image processing classes used by CImageDecoder plugins. This is not a application client API.
TBool | FlushPixels | ( | ) | [pure virtual] |
Commits the changes made to the current bitmap by flushing the buffer.
This is a virtual function that each derived class must implement.
void | PrepareL | ( | CFbsBitmap & | aBitmap, |
const TRect & | aImageRect | |||
) | [pure virtual] |
Initialises internal data structures prior to conversion.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aBitmap | A reference to a fully constucted bitmap with the required display mode and size. |
aImageRect | The region of the image to convert. |
void | PrepareL | ( | CFbsBitmap & | aBitmap, |
const TRect & | aImageRect, | |||
const TSize & | aRgbBlockSize | |||
) | [pure virtual] |
Initialises internal data structures prior to the manipulation of the specified pixel block.
This overloaded version allows specification of a block size for those formats which support blocked pixel data eg. JPEG
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aBitmap | A reference to a fully constucted bitmap with the required display mode and size. |
aImageRect | The region of the image to convert. |
aRgbBlockSize | The size of the block to use. |
void | SetLineRepeat | ( | TInt | aLineRepeat | ) | [pure virtual] |
Sets the number times the current line should be repeated. The lines are repeated in the same direction as set by SetYPosIncrement(). This is used to fill blank lines when rendering interlaced images. eg GIF.
Parameters | |
---|---|
aLineRepeat | The number of times the current line should be repeated |
Sets the pixel at the current position to aGray256.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aGray256 | The greyscale value to set the current pixel to. |
Sets a specified number of pixels to the specified greyscale value.
For image types which support blocking of pixels eg JPEG, the current pixel block is set using the data supplied in aGray256Buffer.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aGray256Buffer | A pointer to a buffer representing a block of pixel color values. |
Sets the number of pixels specified by aCount to the value given by aGray256, starting at the current position.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aGray256 | The greyscale value to set the pixels to. |
aCount | The number of pixels to set. |
Updates the bitmap with greyscale information from the array of greyscale values.
The array of values supplied by aGray256Buffer, whose length is specified in aBufferLength, is used to update successive pixels with the greyscales values.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aGray256Buffer | A pointer to the first element in the array of greyscale values. |
aBufferLength | The number of elements in the array. |
Sets the pixel at the current position to aColor.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aColor | The RGB value to set the current pixel to. |
Sets the current pixel block using the data supplied in aColorBuffer.
Note: For use with image types that support blocking of pixels eg JPEG.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aColorBuffer | A pointer to a buffer representing a block of pixel color values. |
void | SetPixelPadding | ( | TInt | aNumberOfPixels | ) | [pure virtual] |
Sets the pixel padding to the value specified by aNumberOfPixels.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aNumberOfPixels | The number of pixels to use for padding. |
Sets aCount number of pixels to the value given by aColor, starting at the current position.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aColor | The RGB value to set the pixels to. |
aCount | The number of pixels to set. |
Updates the bitmap with colour information from the array of colour values.
Uses the array of colour values supplied by aColorBuffer, whose length is specified by aBufferLength, to update successive pixels with values in the buffer, starting at the current position.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aColorBuffer | A pointer to the first element in the array. |
aBufferLength | The number of elements in the array. |
Sets the current position in the bitmap to aPosition.
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aPosition | A reference to TPoint object defining the position to move to. |
void | SetYPosIncrement | ( | TInt | aYInc | ) | [pure virtual] |
Sets the number of pixels by which to increment the current position in the Y-axis. This is used when rendering images supporting interlacing. eg GIF
This is a virtual function that each derived class must implement.
Parameters | |
---|---|
aYInc | The number of pixels. |