Container class for a selection of functions that perform a (non-geometric) transformation on the input image. More...
Static Public Member Functions | |
static Image | CreateOverlayCapableCopy (this Image img) |
Creates a copy of the input image that is guaranteed to be overlay capable. If the input image already is an overlay-capable image, the input image will simply be copied (preserving all overlay information). Otherwise a new image with the overlay flag set will be generated and receive a copy of the input image, but all the overlay bits will be set to zero. More... | |
static Image | CreateOverlayFreeCopy (this Image img) |
Creates a copy of the input image that does not have the overlay flag set. If the input image already is a non-overlay image, the input image will simply be copied (preserving the information in bit 0). Otherwise a new image with the overlay bits removed (= set to 0) will be generated and returned. More... | |
Container class for a selection of functions that perform a (non-geometric) transformation on the input image.
Creates a copy of the input image that is guaranteed to be overlay capable. If the input image already is an overlay-capable image, the input image will simply be copied (preserving all overlay information). Otherwise a new image with the overlay flag set will be generated and receive a copy of the input image, but all the overlay bits will be set to zero.
img | Image of which to create an overlay capable copy. |
Creates a copy of the input image that does not have the overlay flag set. If the input image already is a non-overlay image, the input image will simply be copied (preserving the information in bit 0). Otherwise a new image with the overlay bits removed (= set to 0) will be generated and returned.
img | Image of which to create a non-overlay capable copy. |