[ft-devel] Re: ABI breakage in 2.3.8 (bad bad bad !!)

2009-03-03 Thread Deron Kazmaier
David Turner wrote: Hello, I'm currently updating the Android FreeType sources to the latest CVS. In doing so, I noticed something that unfortunately escaped me before that: we added a new field to a publicly declared structure, thus breaking the ABI. More specifically, the declaration of PS

[ft-devel] Re: Problem sniffing font weight/width

2008-05-04 Thread Deron Kazmaier
ee if some resource exists to identify the font weight. Otherwise I need to scratch the OS/2 table support. What good is it if it is wrong sometimes? Thanks! Deron Kazmaier ___ Freetype-devel mailing list Freetype-devel@nongnu.org http://lists.nongnu.

[ft-devel] Problem sniffing font weight/width

2008-05-03 Thread Deron Kazmaier
there must be some Mac resource or?? that is correctly identifying the weights, or Mac apps would not work with these fonts. Sadly, I expect this from free fonts, but these are anything but! Thanks for any ideas. Right now I am getting around this by examining the style name. Deron Kazmaier

Re: [ft-devel] FT_HAS_KERNING

2008-04-10 Thread Deron Kazmaier
Hello, A user just sent me to a collection of fonts (ADF_Fontspack - Akandis Digital Foundry) that were not kerning. I do my own kerning processing, but I was using FT_HAS_KERNING to determine that there was no need to look for kerning. To cite the docs: FT_FACE_FLAG_KERNING ::

[ft-devel] FT_HAS_KERNING

2008-04-10 Thread Deron Kazmaier
Hi, A user just sent me to a collection of fonts (ADF_Fontspack - Akandis Digital Foundry) that were not kerning. I do my own kerning processing, but I was using FT_HAS_KERNING to determine that there was no need to look for kerning. Well, I took that check out and indeed these fonts have a c

[ft-devel] Re: Report a bug.

2008-03-30 Thread Deron Kazmaier
Werner LEMBERG wrote: Please forgive me ignorance, but why would the normal FT_Get_First_Char/FT_Get_Next_Char not work for this? Perhaps I missed the part in the documentation which states that no glyph index will exceed the num_glpyhs count, but I have always treated glyph indexes as a discont

[ft-devel] Re: Report a bug.

2008-03-30 Thread Deron Kazmaier
Werner LEMBERG wrote: The attachment(F10.ttf) is a font that I draw-out from a PDF. And the FreeType 2.3.5 cannot deal with it correctly. So I had try the version 2.0.9 and 2.1.10. I found that the 2.0.9 is right, and the 2.1.10 is wrong. Please check it whether it is a bug or not. The

Re: [ft-devel] AAT mort ligatures

2008-03-26 Thread Deron Kazmaier
bles, so allocate a full 65536 */ Makes me shudder ;-) Thanks for the tip, Deron [EMAIL PROTECTED] wrote: Quoting Deron Kazmaier <[EMAIL PROTECTED]>: This is a bit off-topic, but I am trying to make heads or tails out of the mort table to be able to extract the ligatures. Or at least

[ft-devel] AAT mort ligatures

2008-03-26 Thread Deron Kazmaier
Hello, This is a bit off-topic, but I am trying to make heads or tails out of the mort table to be able to extract the ligatures. Or at least the ligatures that have no initial state. I've done something wrong in my code, but I just can't seem to put a finger on it. I've looked around to see

[ft-devel] AAT mort ligatures

2008-03-26 Thread Deron Kazmaier
mething that no one cares about any more? Thanks for any clues, Deron Kazmaier ___ Freetype-devel mailing list Freetype-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/freetype-devel

[ft-devel] Re: Problem with OptaneCompactExtrabold.fam font suitcase

2008-02-14 Thread Deron Kazmaier
r should be printed. > > So here are my 2 questions. > > * The NULL handle for 3rd sfnt resource is > casued by any problems in font file? > Or, caused by any reason out of font file? > > * After your fix, the 7 faces accessed by FT2 > are all different? I'm afraid th

Re: [ft-devel] Problem with OptaneCompactExtrabold.fam font suitcase

2008-02-13 Thread Deron Kazmaier
2008 12:42:06 -0700 Deron Kazmaier <[EMAIL PROTECTED]> wrote: A Mac user provided to me a font suitcase file (OptaneCompactExtrabold.fam) that crashes FreeType (2.3.5 and latest CVS) when referencing face index #3. I tracked it down to the first call in FT_New_Face_From_SFNT (ftm

[ft-devel] Problem with OptaneCompactExtrabold.fam font suitcase

2008-02-02 Thread Deron Kazmaier
Hi, A Mac user provided to me a font suitcase file (OptaneCompactExtrabold.fam) that crashes FreeType (2.3.5 and latest CVS) when referencing face index #3. I tracked it down to the first call in FT_New_Face_From_SFNT (ftmac.c). sfnt = GetResource( FT_MAKE_TAG( 's', 'f', 'n', 't' ), sfnt

[ft-devel] Re: Truetype Collection fonts

2008-01-05 Thread Deron Kazmaier
Werner LEMBERG wrote: [Please stay on the list.] Hi, Sorry. Seems the default for this list is to reply to the author and not the list. The issue has been resolved on my end, but for your own information ftmac.c (amongst other things) will load various resource based font data and massage

[ft-devel] Re: Truetype Collection fonts

2007-12-31 Thread Deron Kazmaier
s for any hints for solving these problems with FreeType if possible. Deron On Fri, 2007-12-21 at 16:40, Deron Kazmaier wrote: I need to extract PDF/PS embeddable fonts from a ttc I find this a little confusing -- generally the software that produces the pdf should be capable of doin

[ft-devel] Truetype Collection fonts

2007-12-21 Thread Deron Kazmaier
I need to extract PDF/PS embeddable fonts from a ttc (plus Mac font suitcase, but that is a bit different beast). Anyone with a suggestion on where to start? Would I be well served to use some FreeType internals or roll something independent? Deron _