Re: [matplotlib-devel] File format for plots

2009-02-28 Thread Sandro Tosi
Hi Sam, On Wed, Feb 25, 2009 at 09:35, sam tygier wrote: > I think this topic has come up before, but i don't think anything has > resulted from it. > > I'd like a way for saving a plot from from matplotlib, so that it can be > re-rendered later, possibly with a different backend, maybe to a diff

Re: [matplotlib-devel] File format for plots

2009-02-28 Thread Eric Firing
Sandro Tosi wrote: > Hi Sam, > > On Wed, Feb 25, 2009 at 09:35, sam tygier wrote: >> I think this topic has come up before, but i don't think anything has >> resulted from it. >> Correct, because the capability would require a *lot* of work to implement, and most of us don't see a compelling nee

Re: [matplotlib-devel] File format for plots

2009-02-28 Thread Andrew Straw
Eric Firing wrote: > Sandro Tosi wrote: >> Hi Sam, >> >> On Wed, Feb 25, 2009 at 09:35, sam tygier wrote: >>> I think this topic has come up before, but i don't think anything has >>> resulted from it. >>> > Correct, because the capability would require a *lot* of work to > implement, and most of

[matplotlib-devel] hashing of FontProperties

2009-02-28 Thread Jae-Joon Lee
The following code show how the FontProperties is currently hashed. def __hash__(self): l = self.__dict__.items() l.sort() return hash(repr(l)) The hash does not account user's rcParams setting. And due to the font caching, findfont(FontProperties()) returns the same