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 swiss army knife of image tools, ImageMagick's `convert
341
340
<http://www.imagemagick.org/script/convert.php>`_ works for this as
342
-
well.<p>
341
+
well.
343
342
344
343
Here is a simple example script that saves some PNGs, makes them into
345
344
a movie, and then cleans up::
@@ -617,6 +616,14 @@ or by saving to a file handle::
617
616
import sys
618
617
fig.savefig(sys.stdout)
619
618
619
+
Here is an example using the Python Imaging Library PIL. First the figure is saved to a StringIO objectm which is then fed to PIL for further processing::
0 commit comments