[matplotlib-devel] Using the Agg renderer by itself

2011-11-23 Thread Chris.Barker
Hi Folks, I've got some drawing to do (for a web app). I don't need all the MPL machinery, but I do need a high quality, fast, renderer. Other options: - The python bindings to GD seem to not really being maintained - PyCairo is a pain to install, and not fast for Python (doesn't know abo

Re: [matplotlib-devel] Using the Agg renderer by itself

2011-11-23 Thread Chris.Barker
On 11/23/11 9:52 AM, Chris.Barker wrote: > I've got some drawing to do (for a web app). I don't need all the MPL > machinery, but I do need a high quality, fast, renderer. One more question. I see: def draw_markers(self, *kl, **kw): # for filtering to work with rastrization, methods

Re: [matplotlib-devel] Using the Agg renderer by itself

2011-11-23 Thread Friedrich Romstedt
2011/11/23 Chris.Barker : > I've got some drawing to do (for a web app). I don't need all the MPL > machinery, but I do need a high quality, fast, renderer. http://www.effbot.org/zone/aggdraw-index.htm http://www.effbot.org/imagingbook/imagedraw.htm Don't know if this suffices your needs. Fried

Re: [matplotlib-devel] Using the Agg renderer by itself

2011-11-23 Thread Benjamin Root
On Wednesday, November 23, 2011, Chris.Barker wrote: > Hi Folks, > > I've got some drawing to do (for a web app). I don't need all the MPL > machinery, but I do need a high quality, fast, renderer. > > Other options: > > - The python bindings to GD seem to not really being maintained > > - PyCai

Re: [matplotlib-devel] Using the Agg renderer by itself

2011-11-23 Thread Chris.Barker
On 11/23/11 10:38 AM, Benjamin Root wrote: > On Wednesday, November 23, 2011, Chris.Barker > wrote: > > Hi Folks, > > > > I've got some drawing to do (for a web app). I don't need all the MPL > > machinery, but I do need a high quality, fast, renderer. > There i