CImageProcessor Class Reference

class CImageProcessor : public CBase

Interface to image processing classes used by CImageDecoder plugins. This is not a application client API.

Inherits from

Member Functions Documentation

FlushPixels()

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.

Post-condition
The current position is updated.

PrepareL(CFbsBitmap &, const TRect &)

voidPrepareL(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

CFbsBitmap & aBitmapA reference to a fully constucted bitmap with the required display mode and size.
const TRect & aImageRectThe region of the image to convert.

PrepareL(CFbsBitmap &, const TRect &, const TSize &)

voidPrepareL(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

CFbsBitmap & aBitmapA reference to a fully constucted bitmap with the required display mode and size.
const TRect & aImageRectThe region of the image to convert.
const TSize & aRgbBlockSizeThe size of the block to use.

ReservedVirtual1()

IMPORT_C voidReservedVirtual1()[private, virtual]

Intended for future proofing - will panic if called

panic
EReservedCall

ReservedVirtual2()

IMPORT_C voidReservedVirtual2()[private, virtual]

Intended for future proofing - will panic if called

panic
EReservedCall

ReservedVirtual3()

IMPORT_C voidReservedVirtual3()[private, virtual]

Intended for future proofing - will panic if called

panic
EReservedCall

ReservedVirtual4()

IMPORT_C voidReservedVirtual4()[private, virtual]

Intended for future proofing - will panic if called

panic
EReservedCall

SetLineRepeat(TInt)

voidSetLineRepeat(TIntaLineRepeat)[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

TInt aLineRepeatThe number of times the current line should be repeated

SetMonoPixel(TInt)

TBool SetMonoPixel(TIntaGray256)[pure virtual]

Sets the pixel at the current position to aGray256.

This is a virtual function that each derived class must implement.

Post-condition
The current position is updated.

Parameters

TInt aGray256The greyscale value to set the current pixel to.

SetMonoPixelBlock(TUint32 *)

TBool SetMonoPixelBlock(TUint32 *aGray256Buffer)[pure virtual]

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

TUint32 * aGray256BufferA pointer to a buffer representing a block of pixel color values.

SetMonoPixelRun(TInt, TInt)

TBool SetMonoPixelRun(TIntaGray256,
TIntaCount
)[pure virtual]

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.

Post-condition
The current position is updated.

Parameters

TInt aGray256The greyscale value to set the pixels to.
TInt aCountThe number of pixels to set.

SetMonoPixels(TUint32 *, TInt)

TBool SetMonoPixels(TUint32 *aGray256Buffer,
TIntaBufferLength
)[pure virtual]

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.

Post-condition
The current position is updated.

Parameters

TUint32 * aGray256BufferA pointer to the first element in the array of greyscale values.
TInt aBufferLengthThe number of elements in the array.

SetPixel(TRgb)

TBool SetPixel(TRgbaColor)[pure virtual]

Sets the pixel at the current position to aColor.

This is a virtual function that each derived class must implement.

Post-condition
The current position is updated.

Parameters

TRgb aColorThe RGB value to set the current pixel to.

SetPixelBlock(TRgb *)

TBool SetPixelBlock(TRgb *aColorBuffer)[pure virtual]

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

TRgb * aColorBufferA pointer to a buffer representing a block of pixel color values.

SetPixelPadding(TInt)

voidSetPixelPadding(TIntaNumberOfPixels)[pure virtual]

Sets the pixel padding to the value specified by aNumberOfPixels.

This is a virtual function that each derived class must implement.

Parameters

TInt aNumberOfPixelsThe number of pixels to use for padding.

SetPixelRun(TRgb, TInt)

TBool SetPixelRun(TRgbaColor,
TIntaCount
)[pure virtual]

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.

Post-condition
On success, the current position is updated.

Parameters

TRgb aColorThe RGB value to set the pixels to.
TInt aCountThe number of pixels to set.

SetPixels(TRgb *, TInt)

TBool SetPixels(TRgb *aColorBuffer,
TIntaBufferLength
)[pure virtual]

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.

Post-condition
The current position is updated.

Parameters

TRgb * aColorBufferA pointer to the first element in the array.
TInt aBufferLengthThe number of elements in the array.

SetPos(const TPoint &)

TBool SetPos(const TPoint &aPosition)[pure virtual]

Sets the current position in the bitmap to aPosition.

This is a virtual function that each derived class must implement.

Parameters

const TPoint & aPositionA reference to TPoint object defining the position to move to.

SetYPosIncrement(TInt)

voidSetYPosIncrement(TIntaYInc)[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

TInt aYIncThe number of pixels.