Re: [matplotlib-devel] Persistent Matplotlib Figures

2009-12-17 Thread Christopher Barker
Joey Wilson wrote: > I would like to be able to save the figures from > matplotlib in an editable form, without flattening down to an image > file. > Now, I understand that resources are limited, so I would be willing to > raise some money to get this feature added to Matplotlib. I think to

Re: [matplotlib-devel] imshow without resampling in the ps backend.

2009-12-17 Thread Jae-Joon Lee
On Thu, Dec 17, 2009 at 5:03 PM, Andrew Straw wrote: > It's not clear to me if this proposal lets one specify any arbitrary affine > transformation. Does it? I believe it does. 3 coordinates will define 6 equations where we have 6 unknowns of the affine matrix. The question is how user want to sp

Re: [matplotlib-devel] imshow without resampling in the ps backend.

2009-12-17 Thread Andrew Straw
Jae-Joon Lee wrote: > What I have in my mind is to extend the "extent" keyword of the imshow > and make it optionally take a tuple of 6 numbers, which are (x1, > x_lrc, x2, y1, y_lrc, y2). > x1, x2, y1, y2 are same as the original "extent", and the (x_lrc, > y_lrc) represent the coordinate of the l

Re: [matplotlib-devel] imshow without resampling in the ps backend.

2009-12-17 Thread Jae-Joon Lee
I change the api to support an arbitrary affine transform. The current api is def draw_image(self, gc, x, y, im, dx=None, dy=None, transform=None): dx, dy is the width and height of the image, i.e., The 4 edge points of the image will be (x, y), (x+dx, y), (x+dx, y+dy), (x, y+dy) after transfor

Re: [matplotlib-devel] Persistent Matplotlib Figures

2009-12-17 Thread Ryan May
On Wed, Dec 16, 2009 at 4:45 PM, Joey Wilson wrote: > Let me say why I think this feature is so essential.  Anyone who is in > research or academia knows that figures often need to be edited when a > publication comes back from peer review.  It's already happened to me many > times, and I've learn

Re: [matplotlib-devel] Persistent Matplotlib Figures

2009-12-17 Thread Anne Archibald
2009/12/16 Joey Wilson : > Does anyone know the status of development for Matplotlib persistent figure > saving?  I would like to be able to save the figures from matplotlib in an > editable form, without flattening down to an image file. The closest thing > to this right now is the SVG output, but

[matplotlib-devel] Persistent Matplotlib Figures

2009-12-17 Thread Joey Wilson
Does anyone know the status of development for Matplotlib persistent figure saving? I would like to be able to save the figures from matplotlib in an editable form, without flattening down to an image file. The closest thing to this right now is the SVG output, but a native mpl format would be bet