Location:
imageprocessor.h
Link against: imageconversion.lib
class TImageBitmapUtil;
Bitmap utility class.
Defined in TImageBitmapUtil
:
Begin()
, Begin()
, End()
, SetBitmapL()
, SetPixel()
, SetPixels()
, SetPos()
, TImageBitmapUtil()
IMPORT_C void Begin();
Requests a lock for the current bitmap from the font & bitmap server and sets the current position in the bitmap to the first pixel.
IMPORT_C TBool Begin(const TPoint &aPosition);
Requests a lock for the current bitmap from the font & bitmap server and sets the current position in the bitmap to aPosition.
|
|
IMPORT_C void End();
Releases a lock previously acquired using TImageBitmapUtil::Begin()
.
IMPORT_C void SetBitmapL(CFbsBitmap *aBitmap);
Sets the current bitmap to aBitmap.
|
|
IMPORT_C void SetPixel(TUint32 aPixelIndex);
Sets the pixel value at the current bitmap position using aPixelIndex.
The current position is updated.
|
IMPORT_C void SetPixels(TUint32 *aPixelIndex, TInt aNumberOfPixels);
Sets an array of pixel values, starting at the current bitmap position using the values supplied in aPixelIndex.
The current position is updated.
|
IMPORT_C TBool SetPos(const TPoint &aPosition);
Sets the current position in the bitmap to aPosition.
|
|