I want to be able to draw shapes and flood-fill them with various fill patterns (diagonal lines, stipple dots, etc).
The CImg library includes functions for drawing various shapes with an arbitrary line pattern for the outline. But I don't see anything about fill pattern.
I think this can probably be done using a bitwise or mathematical operator to mask the pattern onto a solid image, but I'd like to see the specific code for doing it.
Yes, polygon fill patterns can be achieved by first drawing the polygon in a solid color and then using the &= operator with a pre-loaded black-and-white pattern image.