ImagePaste()

Pastes an image into the new one

Usage

BOOLEAN = ImagePaste( name, name2, x, y )
Argument Summary
name the image object
name2 the image to paste in
x x co-ordinate of where the pasted image will go
y y co-ordinate of where the pasted image will go

Calling

Supports named-parameter calling allowing you to use the function like:

ImagePaste(
   name=?, 
   name2=?, 
   x=?, 
   y=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImagePaste( ArgumentCollection={
   name : ?, 
   name2 : ?, 
   x : ?, 
   y : ?
} );