InterpolationHint (Windows CE 5.0)

Send Feedback

This enumeration provides values that identify algorithms used to interpolate pixel values during resizing and rotation operations.

enum InterpolationHint {  InterpolationHintDefault,  InterpolationHintNearestNeighbor,  InterpolationHintBilinear,  InterpolationHintAveraging,  InterpolationHintBicubic};

Elements

  • InterpolationHintDefault
    Indicates that the default algorithm should be used.

  • InterpolationHintNearestNeighbor
    Indicates that point sampling should be used.

  • InterpolationHintBilinear
    Indicates that bilinear interpolation should be used.

  • InterpolationHintAveraging
    Indicates that area averaging should be used when scaling down, and that bilinear interpolation should be used when scaling up.

    This value is good for generating small thumbnail images.

  • InterpolationHintBicubic
    Indicates that bicubic interpolation should be used

Requirements

OS Versions: Windows CE 5.0 and later.
Header: Imaging.h.

See Also

Imaging Enumerations | IBasicBitmapOps::Resize | IBasicBitmapOps::Rotate | IImagingFactory::CreateBitmapFromImage

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.