How to turn a plot into pixels?

Right away, GLMakie.scene2image(scene) should give you what you want.
But that’s not super fast - even faster would be:

screen = display(your_scene)
image = colorbuffer(screen)

If you tell a bit about your use case, there might be even faster ways :wink:

3 Likes