Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCanvasImageStretchQuality Enum

Enumerates image stretch quality levels for bitmap draw routines.

#Declaration

Delphi
TcxCanvasImageStretchQuality = (
    isqStandard,
    isqHigh
);

#Members

Name
isqStandard
isqHigh

#Remarks

Options include:

Value Description
isqStandard 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.
isqHigh 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