StumpyCore::Canvas
Inherits Reference < Object
A canvas is 2D array of RGBA pixels
To create a canvas of size 400 x 200
canvas = StumpyCore::Canvas.new(400, 200)
The default background color is transparent,
but it can be passed in as a parameter or as a block
that returns the color value for each {x, y} pair.
canvas2 = StumpyCore::Canvas.new(400, 200, RGBA::WHITE)
canvas3 = StumpyCore::Canvas.new(256, 256) do |x, y|
RGBA.from_rgb_n(x, y, 255, 8)
end

Because of the way pixels are stored in a Slice,
Canvases are limited to Int32::MAX = 2147483647 pixels in total,
e.g. a maximal size of 46340x46340 for a square image.
Constructors
Instance methods
Two canvases are considered equal if they are of equal size and all their pixels are equal
Short form for get
Short form for set
Iterate over each row of the canvas
(a Slice(RGBA) of size @width).
The main usecase for this is
writing code that encodes images
in some file format.
Get the value of pixel (x, y)
without checking if (x, y) is a valid position.
Check if pixel (x, y) is part of this canvas.
Same as map!, but instead of mutating the current canvas,
a new one is created and returned
Modify pixels by
applying a function (color, x, y) -> new_color
to each pixel of the current canvas,
e.g. to invert colors
Same as map but passes along a fourth parameter
with the index in the pixels slice
Same as map! but passes along a fourth parameter
with the index in the pixels slice
Past the contents of a second Canvas
into this one,
starting at position (x, y).
The pixels are combined using the RGBA#over function.
Same as get,
but returns nil if (x, y) are outside of the canvas
Same as set, but only sets the pixel,
if it is part of the canvas.
Returns true if the pixel was set successfully,
false if it was outside of the canvas.
Set the value of pixel (x, y) to color
without checking if (x, y) is a valid position.
Same as get, but if x ore y are outside of the canvas,
wrap them over at the edges.
E.g. wrapping_get(300, 250) on a 200x200 canvas
returns the pixel at (100, 50).
Same as set, but wrapping along the canvas edges.
See wrapping_get for an example.