::

interface XBitmap

Methods' Summary
getSize Query the size of the bitmap in pixel
queryBitmapCanvas Query a canvas interface for this bitmap, to which draw operations can then be issued.
getScaledBitmap Query a scaled version of the original bitmap.
Methods' Details
getSize
Size
getSize();
 
 

Description
Query the size of the bitmap in pixel
queryBitmapCanvas
XBitmapCanvas
queryBitmapCanvas();
 
 

Description
Query a canvas interface for this bitmap, to which draw operations can then be issued.
getScaledBitmap
XBitmap
getScaledBitmap(
 
[in] Size2D
[in] boolean
 
newSize,
beFast );

Description
Query a scaled version of the original bitmap.
Parameter beFast
When set to true, this parameter advises getScaledBitmap to use the fastest available algorithm to scale the bitmap, which might cause visible artifacts.
Top of Page