IImageDecoder::GetThumbnail (Windows CE 5.0)

Send Feedback

This method asks the decoder for a thumbnail of the current image. If the image does not contain thumbnail data, the decoder returns an error code.

HRESULT GetThumbnail(  OPTIONAL UINT thumbWidth,  OPTIONAL UINT thumbHeight,  IImage**      thumbImage);

Parameters

  • thumbWidth
    [in] An optional UINT value specifying the horizontal size, in pixels, of the thumbnail image. For more information, see the Remarks section.
  • thumbHeight
    [in] An optional UINT value specifying the vertical size, in pixels, of the thumbnail image. For more information, see the Remarks section.
  • thumbImage
    [out] A pointer to the resulting IImage interface pointer for the thumbnail image.

Return Values

If successful, this method returns S_OK.

This method may return E_NOTIMPL if it fails.

Remarks

The decoder is not required to return a thumbnail image with the exact dimensions specified by thumbWidth and thumbHeight. These values are used only as hints.

If thumbWidth and thumbHeight are set to 0, the decoder determines the thumbnail size.

Requirements

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

See Also

IImageDecoder

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.