Location:
mdaimageconverter.h
Link against: mediaclientimage.lib
class CMdaImageBitmapToBitmapUtility : public CMdaImageUtility;
Implements bitmap to bitmap copying and colour depth conversion.
Replaced by Image Conversion library - use CImageEncoder::FileNewL()
MMdaObjectStateChangeObserver
- No description.
CBase
- Base class for all classes to be instantiated on the heap
CActive
- The core class of the active object abstraction
CMdaImageUtility
- Defines the public interface to image conversion
CMdaImageBitmapToBitmapUtility
- Implements bitmap to bitmap copying and colour depth conversion
Defined in CMdaImageBitmapToBitmapUtility
:
CancelConvertL()
, ConvertL()
, ConvertL()
, DoCancel()
, DoClose()
, NewL()
, OpenL()
, RunL()
, ~CMdaImageBitmapToBitmapUtility()
Inherited from CActive
:
Cancel()
,
Deque()
,
EPriorityHigh
,
EPriorityIdle
,
EPriorityLow
,
EPriorityStandard
,
EPriorityUserInput
,
Extension_()
,
IsActive()
,
IsAdded()
,
Priority()
,
RunError()
,
SetActive()
,
SetPriority()
,
TPriority
,
iStatus
Inherited from CBase
:
Delete()
,
operator new()
Inherited from CMdaImageUtility
:
Close()
,
FrameCount()
,
FrameInfo()
,
ImageUtil_Reserved1()
,
ImageUtil_Reserved2()
,
ImageUtil_Reserved3()
,
ImageUtil_Reserved4()
,
MoscoStateChangeEvent()
static IMPORT_C CMdaImageBitmapToBitmapUtility *NewL(MMdaImageUtilObserver &aObserver, CMdaServer *aServer=0);
Constructs and initialises a new instance of the bitmap converter.
The function leaves if the bitmap converter object cannot be created.
|
|
IMPORT_C void OpenL(CFbsBitmap &aBitmap);
Opens the bitmap converter utility.
The function is asynchronous. When the open operation is complete, successfully or otherwise, the callback function MMdaImageUtilObserver::MiuoOpenComplete()
is called.
The source bitmap must be open before any conversion operation can start.
|
virtual IMPORT_C void ConvertL(CFbsBitmap &aBitmap, TInt aFrameNumber=0);
Converts a bitmap.
The operation is asynchronous. When the conversion operation is complete, successfully or otherwise, the callback function
MMdaImageUtilObserver::MiuoConvertComplete()
is called.
|
virtual IMPORT_C void ConvertL(CFbsBitmap &aBitmap, CFbsBitmap &aMaskBitmap, TInt aFrameNumber=0);
Converts a bitmap with a mask. Not supported
|
virtual IMPORT_C void CancelConvertL();
Cancels any conversion in progress.
The callback function MMdaImageUtilObserver::MiuoConvertComplete()
is not called.
virtual void RunL();
Handles an active object's request completion event.
A derived class must provide an implementation to handle the completed request. If appropriate, it may issue another request.
The function is called by the active scheduler when a request completion event occurs, i.e. after the active scheduler's WaitForAnyRequest() function completes.
Before calling this active object's RunL()
function, the active scheduler has:
1. decided that this is the highest priority active object with a completed request
2. marked this active object's request as complete (i.e. the request is no longer outstanding)
RunL()
runs under a trap harness in the active scheduler. If it leaves, then the active scheduler calls RunError()
to handle the leave.
Note that once the active scheduler's Start() function has been called, all user code is run under one of the program's active
object's RunL()
or RunError()
functions.
protected: virtual void DoClose();