ImageList_Merge

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

At a Glance

Header file: Commctrl.h
Windows CE versions: 1.0 and later

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.

dx and dy

[in] Offset of the second image relative to the first image.

Return Values

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.

See Also

ImageList_Create