Selects how 2 pixels interact with each other when you copy and paste parts of an image, read an image from disk, or add graphical elements.
Overwrite - Default mode. The new pixel erases the old pixel. This is by far the fastest mode.
Maximum - The larger of the 2 values is used.
Minimum - The smaller of the 2 values is used.
Add - The 2 values are added (up to the maximum value).
Subtract - The new value is subtracted from the old value (with a minimum result of 0).
XOR - The 2 values are XOR'd with each other.
Average - The 2 values are averaged.
Superimpose - The new pixel replaces the old pixel unless the new pixel's value is 0, in which case the old pixel is unaffected (allows superimposing images with parts ``masked out'').
Example 1. Finding subtle differences between two images (also creates a silhouette effect).
Example 2. Creating contour maps of an image.
Example 3. Reducing chunkiness in image.
Don't forget to change ``Pixel interact mode'' back to ``Overwrite'' afterwards.
NOTE: Don't forget that, when loading an image, unless the interact mode is ``overwrite'', the image will interact not only with other images but also with the background in areas where no image is present. Thus it may be helpful to set the background color to black first, to avoid unexpected results.