BLIT identifier AS expression
The “BLITTING” is a data operation used in computer graphics in which several bitmaps are combined into one using a boolean (or mathematical) function. The operation involves at least two bitmaps: a “source” (or “foreground”) and a “destination” (or “background”), and other fields, called “masks” or something like that. The result may be written to a final bitmap, though often it replaces the “destination” field.
The pixels of each are combined bitwise according to the specified BLIT OPERATION (BOP)
and the result is then written to the destination. The BOP is essentially a boolean
formula, that can be written using BLIT
instructrion. The most obvious BOP overwrites
the destination with the source. Other BOPs may involve AND
, OR
, XOR
, and
other more complex operations.
BLIT bop1 AS ( ( SOURCE ) AND ( DESTINATION ) )
See also the following example files:
Blt
If you have encountered a problem using this command, if you think there is a bug or the explanation is unclear, please open an issue for this keyword on GitHub. Thank you!