Is there a way to resize a canvas in Luxor.jl
so it includes the bounding boxes of all elements?
Suppose I have the following code generating a drawing:
@png begin
circle(Point(200, 200), 150, :fill)
end
Now the circle is partly outside the canvas. Is there a way to resize the canvas and move the object so the bounding boxes of all objects are on the canvas?