Jouni K. Seppänen wrote:
>> Those changes are in the attached patch. It's certainly not a
>> definitive workaround, but it's better than nothing ;-)
>
> Committed; thanks!
My pleasure!
--
knows what fonts are
> installed on some publisher's systems.)
I'm aware of that deprecation. I agree we'll need to drop that feature
in a not so distant future...
--
Nicolas Grilly
Index: unit/test_pdf_use14corefonts.py
==
ey only use the 14 core
fonts built in every PDF viewers (like Helvetica and Times).
Attached to this email is a patch against the current trunk containing
the bug fix and the related test case. Do you agree to commit it?
Thanks,
Nicolas Grilly
Index: unit/test_pdf_us
On 2/21/07, Jouni K. Seppänen <[EMAIL PROTECTED]> wrote:
> > Have you had time to look at my patch regarding the PDF backend? :-)
>
> A bit, and I couldn't quite get it to work. But what the heck, let's
> put it in the repository so we can all hack on it. It is quite an
> improvement to the backend
Hello Jouni,
Have you had time to look at my patch regarding the PDF backend? :-)
Regards,
Nicolas
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to shar
On 2/17/07, Paul Barrett <[EMAIL PROTECTED]> wrote:
> That's fine with me.
>
> On 2/16/07, Edin Salkovic <[EMAIL PROTECTED]> wrote:
> > From the above it's clear that FreeType *never* explicitly supported
> > the glyph->char mapping, but exactly the opposite.
> >
> > In conclusion, I agree with Nic
On 2/14/07, Paul Barrett <[EMAIL PROTECTED]> wrote:
> My first reply:
>
> I suggest that this patch not be applied, since this was the intended
> behavior when the font manager was implemented. The standard behavior
> for indicating a missing character is to print a square. In addition,
> if a s
> I don't remember why we did it this way originally, or if was you or I
> who did it, but if it is correct that the mapping is sometimes many
> codes point to one one glyph index, but there each glyph index must
> point to a single character code (the latter must be correct, right?)
> then reversi
ade a quick grep
through matplotlib's code and I've observed that each time get_charmap
is called, the returned dict is never used as is, but immediately
reversed.
-- Nicolas Grilly
-
Take Surveys. Earn Cash. Influe
On 2/14/07, John Hunter <[EMAIL PROTECTED]> wrote:
> Apparently all we have to do is include the README along with the
> licensing terms. You probably should do that in the the same
> directory the fonts live to ensure that they are always distributed
> together. We also have a licenses directory
I suppose the year of the last entries of CHANGELOG is 2007, not 2006.
Regards,
Nicolas Grilly
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated
On 2/13/07, John Hunter <[EMAIL PROTECTED]> wrote:
> On 2/12/07, Andrew Straw <[EMAIL PROTECTED]> wrote:
> > Great, thanks for checking that in.
> >
> > It looks like images/*.png didn't make it in.
>
> OK, I committed these. I'm not sure why they didn't go in the first
> time since they were in m
On 2/12/07, John Hunter <[EMAIL PROTECTED]> wrote:
> OK, I see, so the problem was we had to flatten everything and mix all
> these datatypes together? eggs can't handle the existing directory
> structure in the mpl-data? It would clearly be better if it could,
> because dumping all the data file
On 2/12/07, Andrew Straw <[EMAIL PROTECTED]> wrote:
> IMO, the way to fix it is to move all the data into
> lib/matplotlib/mpl-data to start with. If we did that, all the shuffling
> that setup.py does would be unnecessary and using setuptools' develop
> mode would work out-of-the-box. I'd be happy
hanks a lot for your answers,
Nicolas Grilly
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere
's size, aren't they?
Is it a design choice or just a matter of fact? Do you want to keep it
that way or do you agree to change it?
For example, with R (where I came from), figure's margin and subplot's
margin are expressed in the sa
I guess there is a very little error in documentation of pylab.subplots_adjust.The order of the arguments in the current doc is: subplots_adjust(left=None, right=None, bottom=None, top=None, wspace=0.2, hspace=
0.2)The correct order of the arguments seems to be: subplots_adjust(left=None, bot
Thank you John for your answer.
You're right: efficiency is a non-issue. I shouldn't have mentioned it.
On 11/5/06, John Hunter <[EMAIL PROTECTED]> wrote:
> Nicolas> But in this function, I don't like the idea to try an
> Nicolas> operation on a string, and wait for an exception in order
Hi Paul,
On 11/6/06, Paul Barrett <[EMAIL PROTECTED]> wrote:
> The ft2font module provides a Python interface to the FT2Font C API.
> get_charmap is one of the methods in this API as is set_charmap. A
> font can have multiple character maps.
Ok.
> get_charmap() returns the default one. Others
On 11/5/06, Jouni K Seppanen <[EMAIL PROTECTED]> wrote:
> Does anyone here have experience with subsetting TrueType fonts (or
> Type 1 or OpenType, for that matter)? One pretty frequent complaint is
> that the eps files produced by matplotlib can be huge because they
> include the full font. Nowada
> "Nicolas Grilly" <[EMAIL PROTECTED]> writes:
> > I've just some issues with:
> > - text alignment (I fixed it on my working copy of matplotlib);
>
> Great! Is there a patch somewhere?
Yes, I'm prepar
e 754, the charmap is immediately
reversed, just after being loaded:
cmap = font.get_charmap()
glyphd = reverse_dict(cmap)
Thanks,
Nicolas Grilly
-
Using Tomcat but need to do more? Need to support web services
On 11/5/06, Andrew Straw <[EMAIL PROTECTED]> wrote:
> BTW, what's the "official" status of the PDF backend? Last I checked (a
> month or so ago), it seemed to work fine, has a couple of Python
> 2.4-isms, but was generally great. I was surprised that it didn't appear
> to make it onto the list of o
Hi Andrew,
Andrew Straw <[EMAIL PROTECTED]> wrote:
> I'm not speaking with the authority of one who actually wrote the
> function or uses it, so I don't know the specific reasons, if there are
> any. However, this kind of thing is common (and encouraged) practice in
> Python. It's a use of "duck t
Hi Gaël,
Gael Varoquaux <[EMAIL PROTECTED]> wrote:
> I am all for a good PDF backend, but you should be aware that under
> unices you can tell matplotlib to use a distiller, as illustrated in:
> http://www.mail-archive.com/matplotlib-devel@lists.sourceforge.net/msg00160.html
Yes, I know it's poss
ic, is why function is_string_like, in
module cbook, doesn't simply
return isinstance(s, types.StringTypes)
instead of
try: obj + ''
except (TypeError, ValueError): return 0
return 1
Thanks for your work,
Nicolas
--
Garden - Marketing & Datamining Consultancy
Nico
26 matches
Mail list logo