Share via


ImageList_Merge (Windows Embedded CE 6.0)

1/6/2010

This function creates a new image by combining two existing images. ImageList_Merge also creates a new image list to store the image.

Syntax

HIMAGELIST WINAPI ImageList_Merge(
  HIMAGELIST himl1, 
  int i1, 
  HIMAGELIST himl2, 
  int i2, 
  int dx, 
  int dy 
);

Parameters

  • himl1
    [in] Handle to the first image list.
  • i1
    [in] Index of the first existing image.
  • himl2
    [in] Handle to the second image list.
  • i2
    [in] Index of the second existing image.
  • dxand dy
    [in] Offset of the second image relative to the first image.

Return Value

The handle to the new image list indicates success. NULL indicates failure.

Remarks

The new image consists of the second existing image drawn transparently over the first. The mask for the new image is the result of performing a logical OR operation on the masks of the two existing images.

Requirements

Header commctrl.h
Library commctrl.lib, Imgctl.lib
Windows Embedded CE Windows CE 1.0 and later

See Also

Reference

Image List Functions
ImageList_Create