@@ -7,6 +7,9 @@ This chapter is a log of changes to matplotlib that affect the
77outward-facing API. If updating matplotlib breaks your scripts, this
88list may help describe what changes may be necessary in your code.
99
10+ Changes beyond 0.99.x
11+ =====================
12+
1013* You can now print several figures to one pdf file. See the docstrings
1114 of the class :class: `matplotlib.backends.backend_pdf.PdfPages ` for
1215 more information.
@@ -18,42 +21,43 @@ list may help describe what changes may be necessary in your code.
1821.. _configobj : http://www.voidspace.org.uk/python/configobj.html
1922.. _`enthought.traits` : http://code.enthought.com/projects/traits
2023
21- Changes beyond 0.99.x
22- =====================
24+ * The new rc parameter ``savefig.extension `` sets the filename extension
25+ that is used by :meth: `matplotlib.figure.Figure.savefig ` if its *fname *
26+ argument lacks an extension.
2327
24- In an effort to simplify the backend API, all clipping rectangles
25- and paths are now passed in using GraphicsContext objects, even
26- on collections and images. Therefore::
28+ * In an effort to simplify the backend API, all clipping rectangles
29+ and paths are now passed in using GraphicsContext objects, even
30+ on collections and images. Therefore::
2731
28- draw_path_collection(self, master_transform, cliprect, clippath,
29- clippath_trans, paths, all_transforms, offsets,
30- offsetTrans, facecolors, edgecolors, linewidths,
31- linestyles, antialiaseds, urls)
32+ draw_path_collection(self, master_transform, cliprect, clippath,
33+ clippath_trans, paths, all_transforms, offsets,
34+ offsetTrans, facecolors, edgecolors, linewidths,
35+ linestyles, antialiaseds, urls)
3236
33- # is now
37+ # is now
3438
35- draw_path_collection(self, gc, master_transform, paths, all_transforms,
36- offsets, offsetTrans, facecolors, edgecolors,
37- linewidths, linestyles, antialiaseds, urls)
39+ draw_path_collection(self, gc, master_transform, paths, all_transforms,
40+ offsets, offsetTrans, facecolors, edgecolors,
41+ linewidths, linestyles, antialiaseds, urls)
3842
3943
40- draw_quad_mesh(self, master_transform, cliprect, clippath,
41- clippath_trans, meshWidth, meshHeight, coordinates,
42- offsets, offsetTrans, facecolors, antialiased,
43- showedges)
44+ draw_quad_mesh(self, master_transform, cliprect, clippath,
45+ clippath_trans, meshWidth, meshHeight, coordinates,
46+ offsets, offsetTrans, facecolors, antialiased,
47+ showedges)
4448
45- # is now
49+ # is now
4650
47- draw_quad_mesh(self, gc, master_transform, meshWidth, meshHeight,
48- coordinates, offsets, offsetTrans, facecolors,
49- antialiased, showedges)
51+ draw_quad_mesh(self, gc, master_transform, meshWidth, meshHeight,
52+ coordinates, offsets, offsetTrans, facecolors,
53+ antialiased, showedges)
5054
5155
52- draw_image(self, x, y, im, bbox, clippath=None, clippath_trans=None)
56+ draw_image(self, x, y, im, bbox, clippath=None, clippath_trans=None)
5357
54- # is now
58+ # is now
5559
56- draw_image(self, gc, x, y, im)
60+ draw_image(self, gc, x, y, im)
5761
5862Changes in 0.99
5963======================
0 commit comments