ImagePaste
Last updated
Was this helpful?
Was this helpful?
// Paste image2 onto image1 at (100, 50)
result = ImagePaste( image1, image2, 100, 50 );
// Using the alias
result = ImageDrawImage( image1, image2, 200, 75 );
// As a member function
image1.paste( image2, 10, 10 );
image1.drawImage( image2, 0, 0 );