JuliaGizmos / Escher.jl

Composable Web UIs in Julia
https://juliagizmos.github.io/Escher.jl
Other
335 stars 63 forks source link

Display an image quicker than using spy() #127

Closed cmey closed 8 years ago

cmey commented 8 years ago

Currently I use spy() from Gadfly, it works, but it's slow. Is there a faster alternative?

I've tried bitmap() from Compose, but it doesn't render (separate issue).

shashi commented 8 years ago

Is your sparse matrix really big?

If so,you should render the image using the PNG backend.

You can do it by using

drawing(PNG(5inch, 5inch), spy(...))

instead of just spy(...)

This might just be faster

shashi commented 8 years ago

Does it work? I'm closing this issue since it's the issue should be addressed by Patchwork or by Gadfly.