class CBitmapScaler : public CBase |
The public API for clients to call the BitmapTransforms Library bitmap scaling.
Public Member Functions | |
---|---|
~CBitmapScaler () | |
IMPORT_C void | Cancel () |
IMPORT_C TInt | CustomCommand ( TUid , TAny *) |
TInt | DisablePostProcessing ( TBool ) |
IMPORT_C CBitmapScaler * | NewL () |
IMPORT_C void | Scale ( TRequestStatus *, CFbsBitmap &, CFbsBitmap &, TBool ) |
IMPORT_C void | Scale ( TRequestStatus *, CFbsBitmap &, const TSize &, TBool ) |
TInt | SetQualityAlgorithm ( TQualityAlgorithm ) |
TInt | UseLowMemoryAlgorithm ( TBool ) |
Private Member Functions | |
---|---|
CBitmapScaler () | |
void | ConstructL () |
Public Member Enumerations | |
---|---|
enum | TQualityAlgorithm { EMinimumQuality , EMediumQuality , EMaximumQuality } |
Private Attributes | |
---|---|
CBitmapScalerBody * | iBody |
IMPORT_C | ~CBitmapScaler | ( | ) |
This is the destructor for the CBitmapScaler and is responsible for deallocating all resources alloctaed by the CBitmapScaler .
IMPORT_C TInt | CustomCommand | ( | TUid | aUid, |
TAny * | aParam | |||
) |
Provides custom command capabilties on CBitmapScaler . The command is dispatched on aUid and if the command is not known KErrNotSupported will be returned. This function is synchronous.
The Default implementation will support one command to enable and disable post processing on the scale operation The uid of this command is published in the header file. Changes to the status of Post Processing Enabled will become effective only after an exising scaling operation has completed.
TInt | DisablePostProcessing | ( | TBool | aState | ) | [inline] |
SetPostProcessing
TBool aState | a boolean flag which if true will set post processing on (Note by defualt the scaler has post processing on) |
IMPORT_C void | Scale | ( | TRequestStatus * | aRequestStatus, |
CFbsBitmap & | aSrcBitmap, | |||
CFbsBitmap & | aTgtBitmap, | |||
TBool | aMaintainAspectRatio = ETrue | |||
) |
Begins the bitmap re-scaling operation.
The scaling factor is based on the relative sizes of the source and target bitmaps. The operation is asynchronous. KErrOverFlow status is set if the sizes of input bitmaps are too large for the algorithm to handle.
TRequestStatus * aRequestStatus | On return, contains a pointer to the completion status of the rescale of the bitmap. |
CFbsBitmap & aSrcBitmap | The bitmap to be re-scaled. |
CFbsBitmap & aTgtBitmap | The target location for the re-scaled bitmap. |
TBool aMaintainAspectRatio = ETrue | A boolean indicating if the aspect ratio is maintained. ETrue means the aspect ratio is retained; this is the default. The same scaling factor is applied in both the horizontal and vertical directions. This is the smaller of the horizontal scaling factor and the vertical scaling factor. EFalse means the aspect ratio need not be retained. |
IMPORT_C void | Scale | ( | TRequestStatus * | aRequestStatus, |
CFbsBitmap & | aBitmap, | |||
const TSize & | aDestinationSize, | |||
TBool | aMaintainAspectRatio = ETrue | |||
) |
Begins the bitmap re-scaling operation.
The scaling factor is based on the relative value of the source bitmap size and the explicitly supplied size. The operation is asynchronous. When it is complete, successfully or otherwise, the TRequestStatus is set, passing the state of the operation. KErrOverFlow status is set if the sizes of input bitmaps are too large for the algorithm to handle.
TRequestStatus * aRequestStatus | On return, contains a pointer to the completion status of the rescale of the bitmap. |
CFbsBitmap & aBitmap | The bitmap to be re-scaled. This reference is also the target location for the re-scaled bitmap. |
const TSize & aDestinationSize | The requested target size for the re-scaled bitmap. |
TBool aMaintainAspectRatio = ETrue | A boolean indicating if the aspect ratio is maintained. ETrue means the aspect ratio is retained; this is the default. The same scaling factor is applied in both the horizontal and vertical directions. This is the smaller of the horizontal scaling factor and the vertical scaling factor. EFalse means the aspect ratio need not be retained. |
TInt | SetQualityAlgorithm | ( | TQualityAlgorithm | aQualityLevel | ) | [inline] |
SetQualityAlgorithm
TQualityAlgorithm aQualityLevel | an enumeration which sets the quality algorithm |
TInt | UseLowMemoryAlgorithm | ( | TBool | aState | ) | [inline] |
UseLowMemory
TBool aState | a boolean flag which if true will enable the low memory algorithm (Note by defualt the scaler does not use the low memory algorithm) |
An enumeration to specify the level of quality algorithm.
EMinimumQuality |
Fastest/lowest quality |
EMediumQuality |
Middle range speed/middle range quality |
EMaximumQuality |
Slowest/highest quality |
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.