Tao.DevIl SDK Documentation

Il.ilOverlayImage Method 

The ilOverlayImage function copies the image named by Src onto the current bound image. XCoord, YCoord and ZCoord are allowed to be any number, even negative numbers, for if you want to start copying Src in the middle of it to the current image's left side. If the image named by Src has alpha components, then blending will occur, instead of just a simple overlay.

[Visual Basic]
Public Shared Function ilOverlayImage( _
   ByVal Source As Integer, _
   ByVal XCoord As Integer, _
   ByVal YCoord As Integer, _
   ByVal ZCoord As Integer _
) As Boolean
[C#]
public static bool ilOverlayImage(
   int Source,
   int XCoord,
   int YCoord,
   int ZCoord
);

Parameters

Source
The image to copy.
XCoord
The starting x position of the current image to copy Src to.
YCoord
The starting y position of the current image to copy Src to.
ZCoord
The starting z position of the current image to copy Src to.

Return Value

See Also

Il Class | Tao.DevIl Namespace