You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now you can run the following code in the console to produce the error
# Run rubyrequire"rmagick"require"rvg/rvg"# Load the PNG filepng_image=Magick::Image.read("/cute-rainbow-svg-cutting-files-rainbow-svg-cut-file-cute-rainbow-clip-art-1156289172309tnqyglqg.png").first# Create an RVG imagervg=Magick::RVG.new(png_image.columns,png_image.rows)do |canvas|
canvas.background_fill="white"canvas.image(png_image)end# Render the RVG to an Imagervg_image=rvg.draw