ImageOverlay
Was this helpful?
Was this helpful?
// Overlay image2 onto image1 with default rule and transparency
result = ImageOverlay( image1, image2 );
// Overlay with custom rule and transparency
result = ImageOverlay( image1, image2, "SRC_ATOP", 0.5 );
// As a member function
image1.overlay( image2, "SRC_OVER", 0.75 );