Re: [Matplotlib-users] markeredgewidth and pdf

2008-05-06 Thread Michael Droettboom
Christopher Brown wrote: Hi Mike, MD It's worth noting -- these viewer differences do pop up from time to MD time. Since I don't have Foxit (or Windows) installed, I wonder if MD you could run an experiment. If you generate the PDF with mpl's MD Cairo backend, do you see the same

Re: [Matplotlib-users] markeredgewidth and pdf

2008-05-06 Thread Christopher Brown
Hi Michael, MD I can't be of much help with Windows builds, unfortunately. MD However, for clarification, is this error from building pycairo or MD matplotlib? matplotlib *should* be able to bypass pkg-config if it MD isn't available. The error occurred while building pycairo. MD will

Re: [Matplotlib-users] markeredgewidth and pdf

2008-05-06 Thread Michael Droettboom
In matplotlib's Python PDF backend, each marker type is stored in an XObject (a reusable object) only once, and referenced to draw each to the screen. The Cairo backend does not have this optimization and draws each marker independently. It would seem that Foxit does not use the current

Re: [Matplotlib-users] markeredgewidth and pdf

2008-05-06 Thread Christopher Brown
Hi Mike, Your test pdf shows up properly in Foxit. MD So --- this would appear to be a bug in Foxit. Perhaps you could MD submit this problematic PDF to them. I will do so, and I'll also include your description of the problem. -- Chris

Re: [Matplotlib-users] markeredgewidth and pdf

2008-05-05 Thread Michael Droettboom
It's worth noting -- these viewer differences do pop up from time to time. Since I don't have Foxit (or Windows) installed, I wonder if you could run an experiment. If you generate the PDF with mpl's Cairo backend, do you see the same behavior? If not, we can analyse the differences in the

Re: [Matplotlib-users] markeredgewidth and pdf

2008-05-05 Thread Christopher Brown
Hi Mike, MD It's worth noting -- these viewer differences do pop up from time to MD time. Since I don't have Foxit (or Windows) installed, I wonder if MD you could run an experiment. If you generate the PDF with mpl's MD Cairo backend, do you see the same behavior? If not, we can MD analyse

Re: [Matplotlib-users] markeredgewidth and pdf

2008-05-03 Thread Christopher Brown
Christopher Brown wrote: With mpl 0.91.2, the markeredgewidth property does not seem to have an effect when using the pdf backend (seems to always be 1, regardless of what I set it to, and it seems to be fine with other backends). Here is a minimal example: Interestingly, the error only

Re: [Matplotlib-users] markeredgewidth and pdf

2008-04-26 Thread Jouni K . Seppänen
Christopher Brown [EMAIL PROTECTED] writes: With mpl 0.91.2, the markeredgewidth property does not seem to have an effect when using the pdf backend (seems to always be 1, regardless of what I set it to, and it seems to be fine with other backends). I can't replicate this problem. Could

[Matplotlib-users] markeredgewidth and pdf

2008-04-25 Thread Christopher Brown
Hi List, With mpl 0.91.2, the markeredgewidth property does not seem to have an effect when using the pdf backend (seems to always be 1, regardless of what I set it to, and it seems to be fine with other backends). Here is a minimal example: from matplotlib import use #use('pdf') # -