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
The resolutions are (assuming ImageMagick is installed)
$ identify -format '%f %w x %h \n' iteration_*
iteration_0.png 1200 x 891
iteration_1.png 1200 x 891
iteration_2.png 99 x 78
iteration_3.png 99 x 78
iteration_4.png 99 x 78
iteration_5.png 99 x 78
iteration_6.png 99 x 78
iteration_7.png 99 x 78
iteration_8.png 99 x 78
iteration_9.png 99 x 78
When using
mlab.savefig(<imagename>, size=(x, y))
the resolution of the saved image is about 10x that specified:resolution:
When using
mlab.savefig()
in a for loop to generate a series of images, the first two will have this wrong resolution, the rest will be correct.MWE:
The resolutions are (assuming ImageMagick is installed)
This also occurs when using the virtual frame buffer http://docs.enthought.com/mayavi/mayavi/tips.html#rendering-using-the-virtual-framebuffer.
when using the direct frame buffer, I see the rendering process uses the whole window, and switches to a much smaller section after the third image.
The text was updated successfully, but these errors were encountered: