TcxCanvasImageStretchQuality Enum
In This Article
Enumerates image stretch quality levels for bitmap draw routines.
#Declaration
Delphi
TcxCanvasImageStretchQuality = (
isqStandard,
isqHigh
);
#Members
Name |
---|
isq
|
isq
|
#Remarks
Options include:
Value | Description |
---|---|
isq |
The default mode biased towards draw performance. If a source bitmap does not match a destination area of a canvas in size, bitmap draw routines employ only the nearest neighbor pixel color interpolation algorithm that an operating system provides. |
isq |
The high quality bitmap draw mode. Bitmap draw routines combine pixel alpha blending with bicubic color interpolation to smooth a stretched or shrunk bitmap that does not match a destination area. |
The TcxCustomCanvas.ImageStretchQuality property references the TcxCanvasImageStretchQuality type.
See Also