1 CHANGES BETWEEN 2.3.11 and 2.3.12
5 - For `FT_Open_Face', new parameters are available to ignore
6 preferred family names: FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY and
7 FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY.
11 - Support for incremental font loading (controlled with the
12 FT_CONFIG_OPTION_INCREMENTAL macro) is now active by default.
14 - Better support for vertical metrics.
16 - Various minor bug fixes.
19 ======================================================================
21 CHANGES BETWEEN 2.3.10 and 2.3.11
23 I. IMPORTANT BUG FIXES
25 - Version 2.3.10 broke PCF support.
28 ======================================================================
30 CHANGES BETWEEN 2.3.10 and 2.3.9
32 I. IMPORTANT BUG FIXES
34 - If all ASCII digits in a font have the same (unscaled) width,
35 the autohinter respects this and won't change it.
37 - TrueType fonts are now rasterized correctly if the horizontal
38 and vertical resolution differ.
40 - Type 1 fonts are now handled with increased precision internally
41 to avoid serious rounding issues if non-integral coordinates are
44 - Horizontally condensed CFF fonts (using the font matrix) were
45 rendered incorrectly. This bug has been introduced after
51 - Support for the SFNT cmap 13 table format (as defined by the new
52 OpenType 1.6 specification) has been added.
54 - B/W rasterization of well-hinted TrueType fonts at small sizes
55 has been greatly improved.
57 - Calculation of vertical metrics in OpenType fonts has been
63 - It is now possible to change the emboldening factor in the
64 `ftview' demo program with keys `e' and `E'.
66 - It is now possible to change the slant value in the `ftview'
67 demo program with keys `s' and `S'.
69 - The 5-levels grayscale mode of the `ftraster' module (which
70 FreeType doesn't use by default) was broken since version 2.3.0.
72 - Compilation of the `ftgrays' and `ftraster' modules was broken
75 - Various fixes for compilation on 64bit and 16bit architectures.
78 ======================================================================
80 CHANGES BETWEEN 2.3.9 and 2.3.8
82 I. IMPORTANT BUG FIXES
84 - Very unfortunately, FreeType 2.3.8 contained a change that broke
85 its official ABI. The end result is that programs compiled
86 against previous versions of the library, but dynamically linked
87 to 2.3.8 can experience memory corruption if they call the
88 `FT_Get_PS_Font_Info' function.
90 We recommend all users to upgrade to 2.3.9 as soon as possible,
91 or to downgrade to a previous release of the library if this is
94 The origin of the bug is that a new field was added to the
95 publicly defined `PS_FontInfoRec' structure. Unfortunately,
96 objects of this type can be stack or heap allocated by callers
97 of `FT_Get_PS_Font_Info', resulting in a memory buffer
98 overwrite with its implementation in 2.3.8.
100 If you want to know whether your code is vulnerable to this
101 issue, simply search for the substrings `PS_FontInfo' and
102 `PS_Font_Info' in your source code. If none is found, your code
103 is safe and is not affected.
105 The FreeType team apologizes for the problem.
107 - The POSIX support of MacOS resource-fork fonts (Suitcase fonts
108 and LaserWriter Type1 PostScript fonts) was broken in 2.3.8. If
109 FreeType2 is built without Carbon framework, these fonts are not
110 handled correctly. Version 2.3.7 didn't have this bug.
112 - `FT_Get_Advance' (and `FT_Get_Advances') returned bad values for
113 almost all font formats except TrueType fonts.
115 - Fix a bug in the SFNT kerning table loader/parser which could
116 crash the engine if certain malformed tables were encountered.
118 - Composite SFNT bitmaps are now handled correctly.
121 II. IMPORTANT CHANGES
123 - The new functions `FT_Get_CID_Is_Internally_CID_keyed' and
124 `FT_Get_CID_From_Glyph_Index' can be used to access CID-keyed
125 CFF fonts via CID values. This code has been contributed by
131 - `FT_Outline_Get_InsideBorder' returns FT_STROKER_BORDER_RIGHT
132 for empty outlines. This was incorrectly documented.
134 - The `ftview' demo program now supports UTF-8 encoded strings.
137 ======================================================================
139 CHANGES BETWEEN 2.3.8 and 2.3.7
141 I. IMPORTANT BUG FIXES
143 - CID-keyed fonts in an SFNT wrapper were not handled correctly.
145 - The smooth renderer produced truncated images (on the right) for
146 outline parts with negative horizontal values. Most fonts don't
147 contain outlines left to the y coordinate axis, but the effect
148 was very noticeable for outlines processed with FT_Glyph_Stroke,
151 - `FT_Get_TrueType_Engine_Type' returned a wrong value if both
152 configuration macros TT_CONFIG_OPTION_BYTECODE_INTERPRETER and
153 TT_CONFIG_OPTION_UNPATENTED_HINTING were defined.
155 - The `face_index' field in the `FT_Face' structure wasn't
156 initialized properly after calling FT_Open_Face and friends with
157 a positive face index for CFFs, WinFNTs, and, most importantly,
158 for TrueType Collections (TTCs).
161 II. IMPORTANT CHANGES
163 - Rudimentary support for Type 1 fonts and CID-keyed Type 1 fonts
164 in an SFNT wrapper has been added -- such fonts are used on the
165 Mac. The core SFNT tables `TYP1' and `CID ' are passed to the
166 PS Type 1 and CID-keyed PS font drivers; other tables (`ALMX',
167 `BBOX', etc.) are not supported yet.
169 - A new interface to extract advance values of glyphs without
170 loading their outlines has been added. The functions are called
171 `FT_Get_Advance' and `FT_Get_Advances'; they are defined in file
172 `ftadvanc.h' (to be accessed as FT_ADVANCES_H).
174 - A new function `FT_Get_FSType_Flags' (in FT_FREETYPE_H) has been
175 contributed by David Bevan to access the embedding and
176 subsetting restriction information of fonts.
181 - FT_MulFix is now an inlined function; by default, assembler code
182 is provided for x86 and ARM. See FT_CONFIG_OPTION_INLINE_MULFIX
183 and FT_CONFIG_OPTION_NO_ASSEMBLER (in ftoption.h) for more.
185 - The handling of `tricky' fonts (this is, fonts which don't work
186 with the autohinter, needing the font format's hinting engine)
187 has been generalized and changed slightly:
189 . A new face flag FT_FACE_FLAG_TRICKY indicates that the font
190 format's hinting engine is necessary for correct rendering.
191 The macro FT_IS_TRICKY can be used to check this flag.
193 . FT_LOAD_NO_HINTING is now ignored for tricky fonts. To really
194 force raw loading of such fonts (without hinting), both
195 FT_LOAD_NO_HINTING and FT_LOAD_NO_AUTOHINT must be used --
196 this is something which you probably never want to do.
198 . Tricky TrueType fonts always use the bytecode interpreter,
199 either the patented or unpatented version.
201 - The function `FT_GlyphSlot_Own_Bitmap' has been moved from
202 FT_SYNTHESIS_H to FT_BITMAP_H; it is now part of the `official'
203 API. (The functions in FT_SYNTHESIS_H are still subject to
206 - In the `ftdiff' demo program you can now toggle the use of
207 FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH with key `a'.
210 ======================================================================
212 CHANGES BETWEEN 2.3.7 and 2.3.6
214 I. IMPORTANT BUG FIXES
216 - If the library was compiled on an i386 platform using gcc, and
217 compiler option -O3 was given, `FT_MulFix' sometimes returned
218 incorrect results which could have caused problems with
219 `FT_Request_Metrics' and `FT_Select_Metrics', returning an
220 incorrect descender size.
222 - Pure CFFs without subfonts were scaled incorrectly if the font
223 matrix was non-standard. This bug has been introduced in
226 - The `style_name' field in the `FT_FaceRec' structure often
227 contained a wrong value for Type 1 fonts. This misbehaviour
228 has been introduced in version 2.3.6 while trying to fix
229 another problem. [Note, however, that this value is
230 informative only since the used algorithm to extract it is
234 II. IMPORTANT CHANGES
236 - Two new macros, FT_OUTLINE_SMART_DROPOUTS and
237 FT_OUTLINE_EXCLUDE_STUBS, have been introduced. Together with
238 FT_OUTLINE_IGNORE_DROPOUTS (which was ignored previously) it is
239 now possible to control the dropout mode of the `raster' module
240 (for B&W rasterization), using the `flags' field in the
241 `FT_Outline' structure.
243 - The TrueType bytecode interpreter now passes the dropout mode to
244 the B&W rasterizer. This greatly increases the output for small
245 ppem values of many fonts like `pala.ttf'.
248 ======================================================================
250 CHANGES BETWEEN 2.3.6 and 2.3.5
252 I. IMPORTANT BUG FIXES
254 - A bunch of potential security problems have been found. All
257 - Microsoft Unicode cmaps in TrueType fonts are now always
258 preferred over Apple cmaps. This is not a bug per se, but there
259 exist some buggy fonts created for MS which have broken Apple
260 cmaps. This affects only the automatic selection of FreeType;
261 it's always possible to manually select an Apple Unicode cmap if
264 - Many bug fixes to the TrueType bytecode interpreter.
266 - Improved Mac support.
268 - Subsetted CID-keyed CFFs are now supported correctly.
270 - CID-keyed CFFs with subfonts which are scaled in a non-standard
271 way are now handled correctly.
273 - A call to FT_Open_Face with `face_index' < 0 crashed FreeType if
274 the font was a Windows (bitmap) FNT/FON.
277 II. IMPORTANT CHANGES
279 - The new function `FT_Get_CID_Registry_Ordering_Supplement' gives
280 access to those fields in a CID-keyed font. The code has been
281 contributed by Derek Clegg.
283 - George Williams contributed code to validate the new `MATH'
284 OpenType table (within the `otvalid' module). The `ftvalid'
285 demo program has been extended accordingly.
287 - An API for cmap 14 support (for Unicode Variant Selectors, UVS)
288 has been contributed by George Williams.
290 - A new face flag FT_FACE_FLAG_CID_KEYED has been added, together
291 with a macro FT_IS_CID_KEYED which evaluates to 1 if the font is
297 - Build support for symbian has been contributed.
299 - Better WGL4 glyph name support, contributed by Sergey Tolstov.
301 - Debugging output of the various FT_TRACEX macros is now sent to
304 - The `ftview' demo program now provides artificial slanting too.
306 - The `ftvalid' demo program has a new option `-f' to select the
310 ======================================================================
312 CHANGES BETWEEN 2.3.5 and 2.3.4
314 I. IMPORTANT BUG FIXES
316 - Some subglyphs in TrueType fonts were handled incorrectly due to
317 a missing graphics state reinitialization.
319 - Large .Z files (as distributed with some X11 packages) weren't
320 handled correctly, making FreeType increase the heap stack in an
323 - A large number of bugs have been fixed to avoid crashes and
324 endless loops with invalid fonts.
327 II. IMPORTANT CHANGES
329 - The two new cache functions `FTC_ImageCache_LookupScaler' and
330 `FTC_SBit_Cache_LookupScaler' have been added to allow lookup of
331 glyphs using an `FTC_Scaler' object; this makes it possible to
332 use fractional pixel sizes in the cache. The demo programs have
333 been updated accordingly to use this feature.
335 - A new API `FT_Get_CMap_Format' has been added to get the cmap
336 format of a TrueType font. This is useful in handling PDF
337 files. The code has been contributed by Derek Clegg.
339 - The auto-hinter now produces better output by default for
340 non-Latin scripts like Indic. This was done by using the CJK
341 hinting module as the default instead of the Latin one. Thanks
342 to Rahul Bhalerao for this suggestion.
344 - A new API `FT_Face_CheckTrueTypePatents' has been added to find
345 out whether a given TrueType font uses patented bytecode
346 instructions. The `ft2demos' bundle contains a new program
347 called `ftpatchk' which demonstrates its usage.
349 - A new API `FT_Face_SetUnpatentedHinting' has been added to
350 enable or disable the unpatented hinter.
352 - Support for Windows FON files in PE format has been contributed
358 - Vincent Richomme contributed Visual C++ project files for Pocket
362 ======================================================================
364 CHANGES BETWEEN 2.3.4 and 2.3.3
366 I. IMPORTANT BUG FIXES
368 - A serious bug in the handling of bitmap fonts (and bitmap
369 strikes of outline fonts) has been introduced in 2.3.3.
372 ======================================================================
374 CHANGES BETWEEN 2.3.3 and 2.3.2
376 I. IMPORTANT BUG FIXES
378 - Remove a serious regression in the TrueType bytecode interpreter
379 that was introduced in version 2.3.2. Note that this does not
380 disable the improvements introduced to the interpreter in
381 version 2.3.2, only some ill cases that occurred with certain
382 fonts (though a few popular ones).
384 - The auto-hinter now ignores single-point contours for computing
385 blue zones. This bug created `wavy' baselines when rendering
386 text with various fonts that use these contours to model
387 mark-attach points (these are points that are never rasterized
388 and are placed outside of the glyph's real outline).
390 - The `rsb_delta' and `lsb_delta' glyph slot fields are now set to
391 zero for mono-spaced fonts. Otherwise code that uses them would
392 essentially ruin the fixed-advance property.
394 - Fix CVE-2007-1351 which can cause an integer overflow while
395 parsing BDF fonts, leading to a potentially exploitable heap
401 - Fixed compilation issues on some 64-bit platforms (see ChangeLog
404 - A new demo program `ftdiff' has been added to compare TrueType
405 hinting, FreeType's auto hinting, and rendering without hinting
409 ======================================================================
411 CHANGES BETWEEN 2.3.2 and 2.3.1
413 I. IMPORTANT BUG FIXES
415 - FreeType returned incorrect kerning information from TrueType
416 fonts when the bytecode interpreter was enabled. This happened
417 due to a typo introduced in version 2.3.0.
419 - Negative kerning values from PFM files are now reported
420 correctly (they were read as 16-bit unsigned values from the
423 - Fixed a small memory leak when `FT_Init_FreeType' failed for
426 - The Postscript hinter placed and sized very thin and ghost stems
429 - The TrueType bytecode interpreter has been fixed to get rid of
430 most of the rare differences seen in comparison to the Windows
434 II. IMPORTANT CHANGES
436 - The auto-hinter now better deals with serifs and corner cases
437 (e.g., glyph '9' in Arial at 9pt, 96dpi). It also improves
438 spacing adjustments and doesn't change widths for non-spacing
441 - Many Mac-specific functions are deprecated (but still
442 available); modern replacements have been provided for them.
443 See the documentation in file `ftmac.h'.
446 ======================================================================
448 CHANGES BETWEEN 2.3.1 and 2.3.0
450 I. IMPORTANT BUG FIXES
452 - The TrueType interpreter sometimes returned incorrect horizontal
453 metrics due to a bug in the handling of the SHZ instruction.
455 - A typo in a security check introduced after version 2.2.1
456 prevented FreeType to render some glyphs in CFF fonts.
459 ======================================================================
461 CHANGES BETWEEN 2.3.0 and 2.2.1
463 I. IMPORTANT BUG FIXES
465 - The PCF font loader is now much more robust while loading
466 malformed font files.
468 - Various memory leaks have been found and fixed.
470 - The TrueType name loader now deals properly with some fonts that
471 encode their names in UTF-16 (the specification was vague, and
472 the code incorrectly assumed UCS-4).
474 - Fixed the TrueType bytecode loader to deal properly with subtle
475 monochrome/gray issues when scaling the CVT. Some fonts
476 exhibited bad rendering artifacts otherwise.
478 - `FT_GlyphSlot_Embolden' now supports vertical layouts correctly
479 (it mangled the vertical advance height).
481 - Fixed byte endian issues of `ftmac.c' to support Mac OS X on
484 - The PFR font loader no longer erroneously tags font files
485 without any outlines as FT_FACE_FLAG_SCALABLE.
488 II. NEW API FUNCTIONS
490 - `FT_Library_SetLcdFilter' allows you to select a special filter
491 to be applied to the bitmaps generated by `FT_Render_Glyph' if
492 one of the FT_RENDER_MODE_LCD and FT_RENDER_MODE_LCD_V modes has
493 been selected. This filter is used to reduce color fringes;
494 several settings are available through the FT_LCD_FILTER_XXX
497 Its declaration and documentation can be found in file
498 `include/freetype/ftlcdfil.h' (to be accessed with macro
501 *IMPORTANT*: This function returns an error
502 (FT_Err_Unimplemented_Feature) in default builds of the library
503 for patent reasons. See below.
505 - `FT_Get_Gasp' allows you to query the flags of the TrueType
506 `gasp' table for a given character pixel size. This is useful
507 to duplicate the text rendering of MS Windows when the native
508 bytecode interpreter is enabled (which isn't the default for
509 other patent reasons).
511 Its declaration and documentation can be found in file
512 `include/freetype/ftgasp.h' (to be accessed with macro
516 III. IMPORTANT CHANGES
518 - The auto-hinter has been tuned a lot to improve its results with
519 serif fonts, resulting in much better font rendering of many web
522 - The unpatented hinter is now part of the default build of the
523 library; we have added code to automatically support `tricky'
526 This means that FreeType should `just work' with certain Asian
527 fonts, like MingLiU, which cannot properly be loaded without a
528 bytecode interpreter, but which fortunately do not use any of
529 the patented bytecode opcodes. We detect these fonts by name,
530 so please report any font file that doesn't seem to work with
531 FreeType, and we shall do what we can to support it in a next
534 Note that the API hasn't changed, so you can still force
535 unpatented hinting with a special parameter to `FT_Open_Face' as
536 well. This might be useful in same cases; for example, a PDF
537 reader might present a user option to activate it to deal with
538 certain `tricky' embedded fonts which cannot be clearly
541 If you are a developer for embedded systems, you might want to
542 *disable* the feature to save code space by undefining
543 TT_CONFIG_OPTION_UNPATENTED_HINTING in file `ftoption.h'.
545 - LCD-optimized rendering is now *disabled* in all default builds
546 of the library, mainly due to patent issues. For more
549 http://lists.gnu.org/archive/html/freetype/2006-09/msg00064.html
551 A new configuration macro FT_CONFIG_OPTION_SUBPIXEL_RENDERING
552 has been introduced in `ftoption.h'; manually define it in this
553 file if you want to re-enable the feature.
555 The change only affects the implementation, not the FreeType
556 API. This means that clients don't need to be modified, because
557 the library still generates LCD decimated bitmaps, but with the
558 added constraint that R=G=B on each triplet.
560 The displayed result should be equal to normal anti-aliased
563 Additionally, if FT_CONFIG_OPTION_SUBPIXEL_RENDERING is not
564 defined, the new `FT_Library_SetLcdFilter' function returns the
565 FT_Err_Unimplemented_Feature error code.
567 - Some computation bugs in the TrueType bytecode interpreter were
568 found, which allow us to get rid of very subtle and rare
569 differences we had experienced with the Windows renderer.
571 - It is now possible to cross-compile the library easily. See the
572 file `docs/INSTALL.CROSS' for details.
574 - The file `src/base/ftmac.c' now contains code for Mac OS X only;
575 its deprecated function `FT_GetFile_From_Mac_Font_Name' always
576 returns an error even if the QuickDraw framework is available.
577 The previous version has been moved to `builds/mac/ftmac.c'.
579 Selecting configure option `--with-quickdraw-carbon' makes the
580 build process use the original `ftmac.c' file instead of the Mac
586 - Various performance and memory footprint optimizations have been
587 performed on the TrueType and CFF font loaders, sometimes with
588 very drastic benefits (e.g., the TrueType loader is now about
589 25% faster; FreeType should use less heap memory under nearly
592 - The anti-aliased rasterizer has been optimized and is now 15% to
593 25% percent faster than in previous versions, depending on
596 - The Type 1 loader has been improved; as an example, it now skips
597 top-level dictionaries properly.
599 - Better support for Mac fonts on POSIX systems, plus compilation
600 fixes for Mac OS X on ppc64 where `ftmac.c' cannot be built.
602 - Configuration without `--with-old-mac-fonts' does not include
603 `ftmac.c' (this was the behaviour in FreeType version 2.1.10).
605 - The TrueTypeGX validator (gxvalid) checks the order of glyph IDs
609 ======================================================================
611 CHANGES BETWEEN 2.2.1 and 2.2
613 I. IMPORTANT BUG FIXES
615 - Various integer overflows have been fixed.
617 - PFB fonts with MacOS resource fork weren't handled correctly on
621 ======================================================================
623 CHANGES BETWEEN 2.2 and 2.1.10
625 (not released officially)
627 I. IMPORTANT BUG FIXES
629 - Vertical metrics for SFNT fonts were incorrect sometimes.
631 - The FT_HAS_KERNING macro always returned 0.
633 - CFF OpenType fonts didn't return correct vertical metrics for
634 glyphs with outlines.
636 - If FreeType was compiled without hinters, all font formats based
637 on PS outlines weren't scaled correctly.
640 II. IMPORTANT CHANGES
642 - Version 2.2 no longer exposes its internals, this is, the header
643 files located in the `include/freetype/internal' directory of
644 the source package are not copied anymore by the `make install'
645 command. Consequently, a number of rogue clients which directly
646 access FreeType's internal functions and structures won't
647 compile without modification.
649 We provide patches for most of those rogue clients. See the
650 following page for more information:
652 http://www.freetype.org/freetype2/patches/rogue-patches.html
654 Note that, as a convenience to our Unix desktop users, version
655 2.2 is *binary* compatible with FreeType 2.1.7, which means that
656 installing this release on an existing distribution shall not
657 break any working desktop.
659 - FreeType's build mechanism has been redesigned. With GNU make
660 it is now sufficient in most cases to edit two files:
661 `modules.cfg', to select the library components, and the
662 configuration file `include/freetype/config/ftoption.h' (which
663 can be copied to the objects directory). Removing unused module
664 directories to prevent its compilation and editing
665 `include/freetype/config/ftmodule.h' is no longer necessary.
667 - The LIGHT hinting algorithm produces more pleasant results.
668 Also, using the FT_LOAD_TARGET_LIGHT flags within FT_Load_Glyph
669 always forces auto-hinting, as a special exception. This allows
670 you to experiment with it even if you have enabled the TrueType
671 bytecode interpreter in your build.
673 - The auto hinter now employs a new algorithm for CJK fonts, based
674 on Akito Hirai's patch. Note that this only works for fonts
675 with a Unicode charmap at the moment.
677 - The following callback function types have changed slightly (by
678 adding the `const' keyword where appropriate):
680 FT_Outline_MoveToFunc
681 FT_Outline_LineToFunc
682 FT_Outline_ConicToFunc
683 FT_Outline_CubicToFunc
687 FT_Glyph_TransformFunc
688 FT_Renderer_RenderFunc
689 FT_Renderer_TransformFunc
691 Note that this doesn't affect binary backward compatibility.
693 - On MacOS, new APIs have been added as replacements for legacy
694 APIs: `FT_New_Face_From_FSRef' for `FT_New_Face_From_FSSpec',
695 and `FT_GetFile_From_Mac_ATS_Name' for
696 `FT_GetFile_From_Mac_Name'. Legacy APIs are still available, if
697 FreeType is built without disabling them.
699 - A new API `FT_Select_Size' has been added to select a bitmap
700 strike by its index. Code using other functions to select
701 bitmap strikes should be updated to use this function.
703 - A new API `FT_Get_SubGlyph_Info' has been added to retrieve
704 subglyph data. This can be used by rogue clients which used to
705 access the internal headers to get the corresponding data.
707 - In 2.1.10, the behaviour of `FT_Set_Pixel_Sizes' was changed for
708 BDF/PCF fonts, and only for them. This causes inconsistency.
709 In this release, we undo the change. The intent of the change
710 in 2.1.10 is to allow size selection through real dimensions,
711 which can now be done through `FT_Request_Size'.
713 - Some security issues were discovered and fixed in the CFF and
714 Type 1 loader, causing crashes of FreeType by malformed font
720 - The documentation for FT_LOAD_TARGET_XXX and FT_RENDER_MODE_XXX
721 values now better reflects its usage and differences: One set is
722 used to specify the hinting algorithm, the other to specify the
723 pixel rendering mode.
725 - `FT_New_Face' and `FT_New_Face_From_FSSpec' in ftmac.c have been
726 changed to count supported scalable faces (sfnt, LWFN) only, and
727 to return the number of available faces via face->num_faces.
728 Unsupported bitmap faces (fbit, NFNT) are ignored.
730 - builds/unix/configure has been improved for MacOS X. It now
731 automatically checks available functions in Carbon library, and
732 prepare to use newest functions by default. Options to specify
733 the dependencies of each Carbon APIs (FSSpec, FSRef, old/new
734 QuickDraw, ATS) are available too. By manual disabling of all
735 QuickDraw functionality, FreeType can be built without
736 `deprecated function' warnings on MacOS 10.4.x, but
737 FT_GetFile_Mac_Name in ftmac.c then is changed to a dummy
738 function, and returns an `unimplemented' error. For details see
741 - SFNT cmap handling has been improved, mainly to run much faster
744 - A new function `FT_Get_TrueType_Engine_Type (declared in
745 `FT_MODULE_H') is provided to determine the status of the
746 TrueType bytecode interpreter compiled into the library
747 (patented, unpatented, unimplemented).
749 - Vertical metrics of glyphs are synthesized if the font does not
750 provide such information. You can tell whether the metrics are
751 synthesized or not by checking the FT_FACE_FLAG_VERTICAL flag of
754 - The demo programs `ftview' and `ftstring' have been rewritten
755 for better readability. `ftview' has a new switch `-p' to test
756 FT_New_Memory_Face (instead of FT_New_Face).
758 - FreeType now honours bit 1 in the `head' table of TrueType fonts
759 (meaning `left sidebearing point at x=0'). This helps with some
762 - Rudimentary support for Adobe's new `SING Glyphlet' format. See
764 http://www.adobe.com/products/indesign/sing_gaiji.html
766 for more information.
768 - The `ftdump' program from the `ft2demos' bundle now shows some
769 information about charmaps. It also supports a new switch `-v'
770 to increase verbosity.
772 - Better AFM support. This includes track kerning support.
775 ======================================================================
777 CHANGES BETWEEN 2.1.10 and 2.1.9
779 I. IMPORTANT BUG FIXES
781 - The size comparison for BDF and PCF files could fail sometimes.
783 - Some CFF files were still not loaded correctly. Patch from
786 - The stroker still had some serious bugs.
788 - Boris Letocha fixed a bug in the TrueType interpreter: The
789 NPUSHW instruction wasn't skipped correctly in IF clauses. Some
790 fonts like `Helvetica 75 Bold' failed.
792 - Another serious bug in handling TrueType hints caused many
793 distortions. It has been introduced in version 2.1.8, and it is
794 highly recommended to upgrade.
796 - FreeType didn't properly parse empty Type 1 glyphs.
798 - An unbound dynamic buffer growth was fixed in the PFR loader.
800 - Several bugs have been fixed in the cache sub-system.
802 - FreeType behaved incorrectly when resizing two distinct but very
803 close character pixel sizes through `FT_Set_Char_Size' (Savannah
806 - The auto-hinter didn't work properly for fonts without a Unicode
807 charmap -- it even refused to load the glyphs.
810 II. IMPORTANT CHANGES
812 - Many fixes have been applied to drastically reduce the amount of
813 heap memory used by FreeType, especially when using
814 memory-mapped font files (which is the default on Unix systems
817 - The auto-hinter has been replaced with a new module, called the
818 `auto-fitter'. It consumes less memory than its predecessor,
819 and it is prepared to support non-latin scripts better in next
822 - George Williams contributed code to read kerning data from PFM
825 - FreeType now uses the TT_NAME_ID_PREFERRED_FAMILY and
826 TT_NAME_ID_PREFERRED_SUBFAMILY strings (if available) for
827 setting family and style in SFNT fonts (patch from Kornfeld
830 - A new API `FT_Sfnt_Table_Info' (in FT_TRUETYPE_TABLES_H) has
831 been added to retrieve name and size information of SFNT tables.
833 - A new API `FT_OpenType_Validate' (in FT_OPENTYPE_VALIDATE_H) has
834 been added to validate OpenType tables (BASE, GDEF, GPOS, GSUB,
835 JSTF). After validation it is no longer necessary to check
836 for errors in those tables while accessing them.
838 Note that this module might be moved to another library in the
839 future to avoid a tight dependency between FreeType and the
840 OpenType specification.
842 - A new API in FT_BITMAP_H (`FT_Bitmap_New', `FT_Bitmap_Convert',
843 `FT_Bitmap_Copy', `FT_Bitmap_Embolden', `FT_Bitmap_Done') has
844 been added. Its use is to convert an FT_Bitmap structure in
845 1bpp, 2bpp, 4bpp, or 8bpp format into another 8bpp FT_Bitmap,
846 probably using a different pitch, and to further manipulate it.
848 - A new API `FT_Outline_Embolden' (in FT_OUTLINE_H) gives finer
849 control how outlines are embolded.
851 - `FT_GlyphSlot_Embolden' (in FT_SYNTHESIS_H) now handles bitmaps
852 also (code contributed by Chia I Wu). Note that this function
853 is still experimental and may be replaced with a better API.
855 - The method how BDF and PCF bitmap fonts are accessed has been
856 refined. Formerly, FT_Set_Pixel_Sizes and FT_Set_Char_Size
857 were synonyms in FreeType's BDF and PCF interface. This has
858 changed now. FT_Set_Pixel_Sizes should be used to select the
859 actual font dimensions (the `strike', which is the sum of the
860 `FONT_ASCENT' and `FONT_DESCENT' properties), while
861 FT_Set_Char_Size selects the `nominal' size (the `PIXELSIZE'
862 property). In both functions, the width parameter is ignored.
867 - The BDF driver no longer converts all returned bitmaps with a
868 depth of 2bpp or 4bpp to a depth of 8bpp. The documentation has
869 not mentioned this explicitly, but implementors might have
870 relied on this after looking into the source files.
872 - A new option `--ftversion' has been added to freetype-config to
873 return the FreeType version.
875 - The memory debugger has been updated to dump allocation
876 statistics on all allocation sources in the library. This is
877 useful to spot greedy allocations when loading and processing
880 - We removed a huge array of constant pointers to constant strings
881 in the `psnames' module. The problem was that compilations in
882 PIC mode (i.e., when generating a Unix shared object/dll) put
883 the array into the non-shared writable section of the library
884 since absolute pointers are not relocatable by nature.
886 This reduces the memory consumption by approximately 16KByte per
887 process linked to FreeType. We now also store the array in a
888 compressed form (as a trie) which saves about 20KByte of code as
891 - Kirill Smelkov provided patches to make src/raster/ftraster.c
892 compile stand-alone again.
895 ======================================================================
897 CHANGES BETWEEN 2.1.9 and 2.1.8
899 I. IMPORTANT BUG FIXES
901 - The function `FT_Get_CharMap_Index' was only declared, without
902 any real code. For consistency, it has been renamed to
903 `FT_Get_Charmap_Index'. (This function is needed to implement
906 - `FT_Outline_Get_BBox' sometimes returned incorrect values for
907 conic outlines (e.g., for TrueType fonts).
909 - Handling of `bhed' table has been fixed.
911 - The TrueType driver with enabled byte code interpreter sometimes
912 returned artifacts due to incorrect rounding. This bug has been
913 introduced after version 2.1.4.
915 - The BDF driver dropped the last glyph in the font.
917 - The BDF driver now uses the DEFAULT_CHAR property (if available)
918 to select a glyph shape for the undefined glyph.
920 - The stroker failed for closed outlines and single points.
923 II. IMPORTANT CHANGES
925 - George Williams contributed code to handle Apple's font
926 distortion technology found in GX fonts (`avar', `cvar', `fvar',
927 and `gvar' tables; the Multiple Masters API has been slightly
928 extended to cope with the new functionality).
930 - The `FT_GlyphSlotRec' structure has been extended: The elements
931 `lsb_delta' and `rsb_delta' give the difference between hinted
932 and unhinted left and right side bearings if autohinting is
933 active. Using those values can improve the inter-letter spacing
934 considerably. See the documentation of `FT_GlyphSlotRec' and
935 the `ftstring' demo program how to use it.
937 - Loading TrueType and Type 1 fonts has been made much faster.
939 - The stroker is no longer experimental (but the cache subsystem
945 - A new documentation file `formats.txt' describes various font
946 formats supported (and not supported) by FreeType.
949 ======================================================================
951 CHANGES BETWEEN 2.1.8 and 2.1.7
953 I. IMPORTANT BUG FIXES
955 - The native TrueType hinter contained some bugs which prevented
956 some fonts to be rendered correctly, most notably Legendum.otf.
958 - The PostScript hinter now produces improved results.
960 - The linear advance width and height values were incorrectly
961 rounded, making them virtually unusable if not loaded with
962 FT_LOAD_LINEAR_DESIGN.
964 - Indexing CID-keyed CFF fonts is now working: The glyph index is
965 correctly treated as a CID, similar to FreeType's CID driver
966 module. Note that CID CMap support is still missing.
968 - The FT_FACE_FLAGS_GLYPH_NAMES flag is now set correctly for all
971 - Some subsetted Type 1 fonts weren't parsed correctly. This bug
972 has been introduced in 2.1.7. In summary, the Type 1 parser has
975 - Non-decimal numbers weren't parsed correctly in PS fonts.
977 - The WinFNT driver now correctly reports FT_ENCODING_NONE for all
978 but one encoding. Use the new FT_WinFNT_ID_XXX values together
979 with `FT_Get_WinFNT_Header' to get the WinFNT charset ID.
981 - The descender metrics (face->size->metrics.descender) for WinFNT
982 bitmap fonts had the wrong sign.
984 - The (emulated) `seac' support for CFF fonts was broken.
986 - The `flex' operator didn't work for CFF fonts.
988 - PS glyphs which use the `hintmask' operator haven't been
989 rendered correctly in some cases.
991 - Metrics for BDF and PCF bitmap font formats have been fixed.
993 - Autohinting is now disabled for glyphs which are vertically
994 distorted or mirrored (using a transformation matrix). This
995 fixes a bug which produced zero-height glyphs.
997 - The `freetype-config' script now handles --prefix and
998 --exec-prefix correctly; it also returns the proper --rpath (or
999 -R) value if FreeType has been built as a shared library.
1002 II. IMPORTANT CHANGES
1004 - Both PCF and BDF drivers now handle the SETWIDTH_NAME and
1005 ADD_STYLE_NAME properties. Values are appended to
1006 face->style_name; example: `Bold SemiCondensed'.
1008 - The PCF driver now handles bitmap fonts compressed with the LZW
1009 algorithm (extension .pcf.Z, compressed with `compress').
1011 - A new API function `FT_Get_CMap_Language_ID' (declared in
1012 `tttables.h') is available to get the language ID of a
1015 - The hexadecimal format of data after the `StartData' command in
1016 CID-keyed Type 1 fonts is now supported. While this can't occur
1017 in file-based fonts, it can happen in document-embedded
1018 resources of PostScript documents.
1020 - Embedded bitmaps in SFNT-based CFF fonts are now supported.
1022 - A simple API is now available to control FreeType's tracing
1023 mechanism if compiled with FT_DEBUG_LEVEL_TRACE. See the file
1024 `ftdebug.h' for more details.
1026 - YAMATO Masatake contributed improved handling of MacOS resource
1027 forks on non-MacOS platforms (for example, Linux can mount MacOS
1030 - Support for MacOS has been improved; there is now a new function
1031 `FT_New_Face_From_FSSpec' similar to `FT_New_Face' except that
1032 it accepts an FSSpec instead of a path.
1034 - The cache sub-system has been rewritten.
1036 - There is now support for deinstallation of faces.
1038 - A new API function `FTC_Manager_RemoveFaceID' has been added
1039 to delete all `idle' nodes that correspond to a given
1040 FTC_FaceID. All `locked' nodes (i.e., those with a reference
1041 count > 0), will be modified to prevent them from appearing in
1042 further lookups (they will be cleaned normally when their
1043 reference count reaches 0).
1045 - There is now support for point scaling (i.e., providing
1046 character sizes in points + dpis, instead of pixels).
1048 - Three abstract cache classes are now available:
1050 FTC_GCache: Used to store one glyph item per cache node,
1051 with the ability to group common attributes into
1052 `families'. This replaces the old
1053 FTC_GlyphCache class.
1055 FTC_ICache: Used to store one FT_Glyph per cache node. This
1056 extends FTC_GCache. Family definition, family
1057 comparison, and glyph loading are however left
1060 FTC_SCache: Used to store up to 16 small bitmaps per cache
1061 node. This extends FTC_GCache. Family
1062 definition, family comparison and glyph loading
1063 are however left to sub-classes.
1065 - The file `src/cache/ftcbasic.c' implements:
1067 FTC_ImageCache: Extends FTC_ICache; implements family
1068 definitions and glyph loading similar to the
1071 FTC_SBitCache: Extends FTC_SCache, implements family
1072 definitions and glyph loading similar to the
1075 Client applications should be able to extend FTC_GCache,
1076 FTC_ICache, or FTC_SCache much more easily (i.e., less code to
1077 write, and less callbacks). For example, one could envision
1078 caches that are capable of storing transformed (obliqued),
1079 stroked, emboldened, or colored glyph images. Use
1080 `ftcbasic.c' as an example.
1082 - All public APIs are now in `include/freetype/ftcache.h', (to
1083 be accessed as `FT_CACHE_H'). The contents of
1084 `include/freetype/cache/' is only needed by applications that
1085 wish to implement their own caches.
1087 - There were some major performance improvements through the use
1088 of various programming tricks. Cache hits are up to 70%
1089 faster than in the old code.
1091 - The FTC_CMapCache has been simplified. Charmaps can only be
1092 accessed by index right now. There is also a new API named
1093 `FT_Charmap_GetIndex' for this purpose.
1095 - The demo programs have been updated to the new code. The
1096 previous versions will not work with the current one.
1098 - Using an invalid face index in FT_Open_Face and friends now
1099 causes an error even if the font contains a single face only.
1104 - Wolfgang Domröse contributed support files for building FreeType
1105 on the Atari using the PureC compiler. Note that the Atari is a
1108 - Vitaliy Pasternak contributed project files for VS.NET 2003.
1111 ======================================================================
1113 CHANGES BETWEEN 2.1.7 and 2.1.6
1115 I. IMPORTANT BUG FIXES
1117 - Updated to newest libtool version, fixing build problems on
1120 - On Unix platforms, `make install' didn't copy the correct
1123 Note that version 2.1.7 contains the same library C source code as
1127 ======================================================================
1129 CHANGES BETWEEN 2.1.6 and 2.1.5
1131 I. IMPORTANT BUG FIXES
1133 - The PFR font driver didn't load kerning tables correctly, and
1134 the functions in FT_PFR_H didn't work at all.
1136 - Type 1 font files in binary format (PFB) with an end-of-file
1137 indicator weren't accepted by the FreeType engine.
1139 - Fonts which contain /PaintType and /StrokeWidth no longer cause
1140 a segfault. This bug has been introduced in version 2.1.5.
1142 - Fonts loaded with FT_LOAD_RENDER no longer cause strange
1143 results. This bug has been introduced in version 2.1.5.
1145 - Some Windows (bitmap) FNT/FON files couldn't be handled
1149 II. IMPORTANT CHANGES
1151 - The internal module API has been heavily changed in favor of
1152 massive simplifications within the font engine. This also means
1153 that authors of third-party modules must adapt their code to the
1156 NOTE: THE NEW SCHEME IS NOT COMPLETED YET. PLEASE WAIT UNTIL A
1159 - The PostScript parser has been enhanced to handle comments and
1160 strings correctly. Additionally, more syntax forms are
1163 - Added the optional unpatented hinting system for TrueType. It
1164 allows typefaces which need hinting to produce correct glyph
1165 forms (e.g., Chinese typefaces from Dynalab) to work acceptably
1166 without infringing Apple patents. This system is compiled only
1167 if TT_CONFIG_OPTION_COMPILE_UNPATENTED_HINTING is defined in
1168 ftoption.h (activated by default).
1173 - There is now a guard in the public header files to protect
1174 against inclusion of freetype.h from FreeType 1.
1176 - Direct inclusion of freetype.h and other public header files no
1177 longer works. You have to use the documented scheme
1179 #include <ft2build.h>
1180 #include FT_FREETYPE_H
1182 to load freetype.h with a symbolic name. This protects against
1183 renaming of public header files (which shouldn't happen but
1184 actually has, avoiding two public header files with the same
1188 ======================================================================
1190 CHANGES BETWEEN 2.1.5 and 2.1.4
1192 I. IMPORTANT BUG FIXES
1194 - Parsing the /CIDFontName field now removes the leading slash to
1195 be in sync with other font drivers.
1197 - gzip support was buggy. Some fonts could not be read.
1199 - Fonts which have nested subglyphs more than one level deep no
1200 longer cause a segfault.
1202 - Creation of synthetic cmaps for fonts in CFF format was broken
1205 - Numeric font dictionary entries for synthetic fonts are no
1208 - The font matrix wasn't applied to the advance width for Type1,
1209 CID, and CFF fonts. This caused problems when loading certain
1210 synthetic Type 1 fonts like `Helvetica Narrow'.
1212 - The test for the charset registry in BDF and PCF fonts is now
1215 - FT_Vector_Rotate sometimes returned strange values due to
1218 - The PCF driver now returns the correct number of glyphs
1219 (including an artificial `notdef' glyph at index 0).
1221 - FreeType now supports buggy CMaps which are contained in many
1222 CJK fonts from Dynalab.
1224 - Opening an invalid font on a Mac caused a segfault due to
1225 double-freeing memory.
1227 - BDF fonts with more than 32768 glyphs weren't supported
1231 II. IMPORTANT CHANGES
1233 - Accessing bitmap font formats has been synchronized. To do that
1234 the FT_Bitmap_Size structure has been extended to contain new
1235 fields `size', `x_ppem', and `y_ppem'.
1237 - The FNT driver now returns multiple faces, not multiple strikes.
1239 - The `psnames' module has been updated to the Adobe Glyph List
1242 - The `psnames' module now understands `uXXXX[X[X]]' glyph names.
1244 - The algorithm for guessing the font style has been improved.
1246 - For fonts in SFNT format, root->height is no longer increased if
1247 the line gap is zero. There exist fonts (containing e.g. form
1248 drawing characters) which intentionally have a zero line gap
1251 - ft_glyph_bbox_xxx flags are now deprecated in favour of
1254 - ft_module_xxx flags are now deprecated in favour of
1257 - FT_ENCODING_MS_{SJIS,GB2312,BIG5,WANSUNG,JOHAB} are now
1258 deprecated in favour of
1259 FT_ENCODING_{SJIS,GB2312,GIB5,WANSONG,JOHAB} -- those encodings
1260 are not specific to Microsoft.
1265 - The autohinter has been further improved; for example, `m'
1266 glyphs now retain its vertical symmetry.
1268 - Partial support of Mac fonts on non-Mac platforms.
1270 - `make refdoc' (after first `make') builds the HTML
1271 documentation. You need Python for this.
1273 - The make build system should now work more reliably on DOS-like
1276 - Support for EMX gcc and Watson C/C++ compilers on MS-DOS has
1279 - Better VMS build support.
1281 - Support for the pkg-config package by providing a `freetype.pc'
1284 - New configure option --with-old-mac-fonts for Darwin.
1286 - Some source files have been renamed (mainly to fit into the 8.3
1290 ======================================================================
1292 CHANGES BETWEEN 2.1.4 and 2.1.3
1294 I. IMPORTANT BUG FIXES
1296 - Updated to newest libtool version, fixing build problems on
1299 - A fix in the Gzip stream reader: It couldn't read certain .gz
1300 files properly due to a small typo. In certain cases, FreeType
1301 could also loop endlessly when trying to load tiny gzipped
1304 - The configure script now tries to use the system-wide zlib when
1305 it finds one (instead of the copy found in src/gzip). And
1306 `freetype-config' has been updated to return relevant flags in
1307 this case when invoked with `--libs' (e.g. `-lzlib').
1309 - Certain fonts couldn't be loaded by 2.1.3 because they lacked a
1310 Unicode charmap (e.g. SYMBOL.TTF). FreeType erroneously
1313 - The CFF loader was modified to accept fonts which only contain a
1314 subset of their reference charset. This prevented the correct
1315 use of PDF-embedded fonts.
1317 - The logic to detect Unicode charmaps has been modified. This is
1318 required to support fonts which include both 16-bit and 32-bit
1319 charmaps (like very recent asian ones) using the new 10 and 12
1322 - The TrueType loader now limits the depth of composite glyphs.
1323 This is necessary to prevent broken fonts to break the engine by
1324 blowing the stack with recursive glyph definitions.
1326 - The CMap cache is now capable of managing UCS-4 character codes
1327 that are mapped through extended charmaps in recent
1328 TrueType/OpenType fonts.
1330 - The cache sub-system now properly manages out-of-memory
1331 conditions instead of blindly reporting them to the caller.
1332 This means that it will try to empty the cache before restarting
1333 its allocations to see if that can help.
1335 - The PFR driver didn't return the list of available embedded
1338 - There was a nasty memory leak when using embedded bitmaps in
1339 certain font formats.
1342 II. IMPORTANT CHANGES
1344 - David Chester contributed some enhancements to the auto-hinter
1345 that significantly increase the quality of its output. The
1346 Postscript hinter was also improved in several ways.
1348 - The FT_RENDER_MODE_LIGHT render mode was implemented.
1350 - A new API function called `FT_Get_BDF_Property' has been added
1351 to FT_BDF_H to retrieve BDF properties from BDF _and_ PCF font
1352 files. THIS IS STILL EXPERIMENTAL, since it hasn't been
1353 properly tested yet.
1355 - A Windows FNT specific API has been added, mostly to access font
1356 headers. This is used by Wine.
1358 - TrueType tables without an `hmtx' table are now tolerated when
1359 an incremental interface is used. This happens for certain
1360 Type42 fonts passed from Ghostscript to FreeType.
1362 - The PFR font driver is now capable of returning the font family
1363 and style names when they are available (instead of the sole
1364 `FontID'). This is performed by parsing an *undocumented*
1365 portion of the font file!
1370 - The path stroker in FT_STROKER_H has entered beta stage. It now
1371 works very well, but its interface might change a bit in the
1372 future. More on this in later releases.
1374 - The documentation for FT_Size_Metrics didn't appear properly in
1377 - The file docs/VERSION.DLL has been updated to explain versioning
1378 with FreeType (i.e., comparing release/libtool/so numbers, and
1379 how to use them in autoconf scripts).
1381 - The installation documentation has been seriously revamped.
1382 Everything is now in the `docs' directory.
1385 ======================================================================
1387 CHANGES BETWEEN 2.1.3 and 2.1.2
1389 I. IMPORTANT BUG FIXES
1391 - FT_Vector_Transform had been incorrectly modified in 2.1.2,
1392 resulting in incorrect transformations being applied (for
1393 example, rotations were processed in opposite angles).
1395 - The format 8 and 12 TrueType charmap enumeration routines have
1396 been fixed (FT_Get_Next_Char returned invalid values).
1398 - The PFR font driver returned incorrect advance widths if the
1399 outline and metrics resolution defined in the font file were
1402 - FT_Glyph_To_Bitmap now returns successfully when called with an
1403 FT_BitmapGlyph argument (it previously returned an error).
1405 - A bug in the Type 1 loader that prevented valid font bounding
1406 boxes to be loaded from multiple master fonts.
1408 - The SFNT validation code has been rewritten. FreeType can now
1409 load `broken' fonts that were usable on Windows, but not with
1410 previous versions of the library.
1412 - The computation of bearings in the BDF driver has been fixed.
1414 - The Postscript hinter crashed when trying to hint certain glyphs
1415 (more precisely, when trying to apply hints to an empty glyph
1418 - The TrueType glyph loader now supports composites in `Apple
1419 format' (they differ slightly from Microsoft/OpenType ones in
1420 the way transformation offsets are computed).
1422 - FreeType was very slow at opening certain asian CID/CFF fonts,
1423 due to fixed increment in dynamic array re-allocations. This
1424 has been changed to exponential behaviour to get acceptable
1429 II. IMPORTANT CHANGES
1431 - The PCF driver now supports gzip-compressed font files natively.
1432 This means that you will be able to use all these bitmap fonts
1433 that come with XFree86 with FreeType (and libXft/libXft2, by
1436 - The automatic and postscript hinters have both been updated.
1437 This results in a relatively important increase of rendering
1438 quality since many nasty defaults have been suppressed. Please
1441 http://www.freetype.org/hinting/smooth-hinting.html
1443 for additional details on this topic.
1445 - The `load_flags' parameter of `FT_Load_Glyph' is now an FT_Int32
1446 (instead of just being an FT_Int). This breaks source and
1447 binary compatibility for 16bit systems only, while retaining
1448 both of them for 32 and 64 bit ones.
1450 Some new flags have been added consequently:
1452 FT_LOAD_NO_AUTOHINT :: Disable the use of the auto-hinter
1453 (but not native format hinters).
1455 FT_LOAD_TARGET_NORMAL :: Hint and render for normal
1456 anti-aliased displays.
1458 FT_LOAD_TARGET_MONO :: Hint and render for 1-bit displays.
1460 FT_LOAD_TARGET_LCD :: Hint and render for horizontal RGB or
1461 BGR sub-pixel displays (like LCD
1462 screens). THIS IS STILL
1465 FT_LOAD_TARGET_LCD_V :: Same as FT_LOAD_TARGET_LCD, for
1466 vertical sub-pixel displays (like
1467 rotated LCD screens). THIS IS STILL
1470 FT_LOAD_MONOCHROME is still supported, but only affects
1471 rendering, not the hinting.
1473 Note that the `ftview' demo program available in the `ft2demos'
1474 package has been updated to support LCD-optimized display on
1475 non-paletted displays (under Win32 and X11).
1477 - The PFR driver now supports embedded bitmaps (all formats
1478 supported), and returns correct kerning metrics for all glyphs.
1480 - The TrueType charmap loader now supports certain `broken' fonts
1481 that load under Windows without problems.
1483 - The cache API has been slightly modified (it's still a beta!):
1485 - The type FTC_ImageDesc has been removed; it is now replaced
1486 by FTC_ImageTypeRec. Note that one of its fields is a
1487 `load_flag' parameter for FT_Load_Glyph.
1489 - The field `num_grays' of FT_SBitRec has been changed to
1490 `max_grays' in order to fit within a single byte. Its
1491 maximum value is thus 255 (instead of 256 as previously).
1496 - Added support for the DESTDIR variable during `make install'.
1497 This simplifies packaging of FreeType.
1499 - Included modified copies of the ZLib sources in `src/gzip' in
1500 order to support gzip-compressed PCF fonts. We do not use the
1501 system-provided zlib for now, though this is a probable
1502 enhancement for future releases.
1504 - The DocMaker tool used to generate the on-line API reference has
1505 been completely rewritten. It is now located in
1506 `src/tools/docmaker/docmaker.py'. Features:
1508 - better cross-referenced output
1509 - more polished output
1510 - uses Python regular expressions (though it didn't speed the
1512 - much more modular structure, which allows for different
1513 `backends' in order to generate HTML, XML, or whatever
1516 One can regenerate the API reference by calling:
1518 python src/tools/docmaker/docmaker.py \
1520 --title=FreeType-2.1.3 \
1521 --output=<outputdirectory>
1522 include/freetype/*.h \
1523 include/freetype/config/*.h \
1524 include/freetype/cache/*.h
1526 - A new, experimental, support for incremental font loading (i.e.,
1527 loading of fonts where the glyphs are not in the font file
1528 itself, but provided by an external component, like a Postscript
1529 interpreter) has been added by Graham Asher. This is still work
1530 in progress, however.
1532 - A new, EXPERIMENTAL, path stroker has been added. It doesn't
1533 suffer from severe rounding errors and treat bezier arcs
1534 directly. Still work in progress (i.e. not part of the official
1535 API). See the file <freetype/ftstroker.h> for some of the
1538 - The massive re-formatting of sources and internal re-design is
1539 still under-way. Many internal functions, constants, and types
1543 ======================================================================
1545 CHANGES BETWEEN 2.1.2 and 2.1.1
1547 I. IMPORTANT BUG FIXES
1549 - Many font drivers didn't select a Unicode charmap by default
1550 when a new face was opened (with the FT_CONFIG_OPTION_USE_CMAPS
1551 options enabled), causing many applications to not be able to
1552 display text correctly with the 2.1.x releases.
1554 - The PFR driver had a bug in its composite loading code that
1555 produces incorrectly placed accents with many fonts.
1557 - The Type42 driver crashed sometimes due to a nasty bug.
1559 - The Type 1 custom encoding charmap didn't handle the case where
1560 the first glyph index wasn't 0.
1562 - A serious typo in the TrueType composite loader produced
1563 incorrectly placed glyphs in fonts like `Wingdings' and a few
1569 - The Win32 Visual C++ project file has been updated to include
1570 the PFR driver as well.
1572 - `freetype.m4' is now installed by default by `make install' on
1575 - The function FT_Get_PS_Font_Info now works with CID and Type42
1579 ======================================================================
1581 CHANGES BETWEEN 2.1.1 and 2.1.0
1583 I. IMPORTANT BUG FIXES
1585 - The `version_info' returned by `freetype-config' in 2.1.0
1586 returned an invalid value. It now returns 9:1:3 (2.0.9 returned
1589 - Version 2.1.0 couldn't be linked against applications on Win32
1590 and Amiga systems due to a new debug function that wasn't
1591 properly propagated to the system-specific directory in
1594 - Various MacOS and Mac OS X specific fixes.
1596 - Fixed a bug in the TrueType charmap validation routines that
1597 made version 2.1.0 too restrictive -- many popular fonts have
1600 - There was still a very small difference between the monochrome
1601 glyph bitmaps produced by FreeType 1.x and FreeType 2.x with the
1602 bytecode interpreter enabled. This was caused by an invalid
1603 flag setting in the TrueType glyph loader, making the rasterizer
1604 change its drop-out control mode. Now the results should
1605 _really_ be completely identical.
1607 - The TrueType name table loader has been improved to support many
1608 popular though buggy Asian fonts. It now ignores empty name
1609 entries, invalid pointer offsets and a few other incorrect
1610 subtleties. Moreover, name strings are now loaded on demand,
1611 which reduces the memory load of many faces (e.g. the ARIAL.TTF
1612 font file contains a 10kByte name table with 70 names).
1614 - Fixed a bug in the Postscript hinter that prevented family blues
1615 substitution to happen correctly.
1620 - Three new font drivers in this release:
1622 * A BDF font driver, contributed by Franco Zappa Nardelli,
1623 heavily modified by Werner Lemberg. It also supports
1624 anti-aliased bitmaps (using a slightly extended BDF format).
1626 * A Type42 font driver, contributed by Roberto Alameda. It is
1627 still experimental but seems to work relatively well.
1629 * A PFR font driver, contributed by David Turner himself. It
1630 doesn't support PFR hinting -- note that BitStream has at
1631 least two patents on this format!
1636 - The cache sub-system has been optimized in important ways.
1637 Cache hits are now significantly faster. For example, using the
1638 CMap cache is about twice faster than calling FT_Get_Char_Index
1639 on most platforms. Similarly, using an SBit cache is about five
1640 times faster than loading the bitmaps from a bitmap file, and
1641 300 to 500 times faster than generating them from a scalable
1644 Note that you should recompile your sources if you designed a
1645 custom cache class for the FT2 Cache subsystem, since the
1646 changes performed are source, but not binary, compatible.
1649 ======================================================================
1651 CHANGES BETWEEN 2.1.0 and 2.0.9
1653 I. IMPORTANT BUG FIXES
1655 - The TrueType bytecode interpreter has been fixed to produce
1656 _exactly_ the same output as FreeType 1.x. Previous differences
1657 were due to slightly distinct fixed-point computation routines
1658 used to perform dot products and vector length measurements.
1660 It seems that native TrueType hinting is _extremely_ sensitive
1661 to rounding errors. The required vector computation routines
1662 have been optimized and placed within the `ttinterp.c' file.
1664 - Fixed the parsing of accelerator tables in the PCF font driver.
1666 - Fixed the Type1 glyph loader routine used to compute the font's
1667 maximum advance width.
1672 - The `configure' script used on Unix systems has been modified to
1673 check that GNU Make is being used to build the library.
1674 Otherwise, it will display a message proposing to use the
1675 GNUMAKE environment variable to name it.
1677 The Unix-specific file README.UNX has been modified accordingly.
1682 - The FreeType License in `docs/FTL.TXT' has been updated to
1683 include a proposed preferred disclaimer. If you are using
1684 FreeType in your products, you are encouraged (but not mandated)
1685 to use the following text in your documentation:
1688 Portions of this software are copyright © 1996-2002 The
1689 FreeType Project (www.freetype.org). All rights reserved.
1692 - The default size of the render pool has been reduced to 16kByte.
1693 This shouldn't result in any noticeable performance penalty,
1694 unless you are using the engine as-is to render very large and
1697 - The FreeType 2 redesign has begun. More information can be
1700 http://www.freetype.org/freetype2/redesign.html
1702 The following internal changes have been performed within the
1703 sources of this release:
1705 - Many internal types have been renamed to increase
1706 consistency. The following should be true, except for
1709 * All structure types have a name ending in `Rec' (short
1712 * A pointer-to-structure type has the same name as the
1713 structure, _without_ the `Rec' suffix.
1717 typedef struct FooRec_
1723 - Many internal macros have been renamed to increase
1724 consistency. The following should be true:
1726 * All macros have a name beginning with `FT_'. This
1727 required a few changes like
1731 REALLOC => FT_REALLOC
1733 * All macros are completely UPPERCASE. This required a
1736 READ_Short => FT_READ_SHORT
1737 NEXT_Short => FT_NEXT_SHORT
1738 GET_ULongLE => FT_GET_ULONG_LE
1739 MEM_Set => FT_MEM_SET
1740 MEM_Copy => FT_MEM_COPY
1743 * Whenever possible, all macro names follow the
1744 FT_<OBJECT>_<METHOD> pattern. For example
1746 ACCESS_Frame => FT_FRAME_ENTER
1747 FORGET_Frame => FT_FRAME_EXIT
1748 EXTRACT_Frame => FT_FRAME_EXTRACT
1749 RELEASE_Frame => FT_FRAME_RELEASE
1751 FILE_Pos => FT_STREAM_POS
1752 FILE_Seek => FT_STREAM_SEEK
1753 FILE_Read => FT_STREAM_READ
1754 FILE_ReadAt => FT_STREAM_READ_AT
1755 READ_Fields => FT_STREAM_READ_FIELDS
1757 - Many internal functions have been renamed to follow the
1758 FT_<Object>_<Method> pattern. For example:
1760 FT_Seek_Stream => FT_Stream_Seek
1761 FT_Read_Stream_At => FT_Stream_ReadAt
1762 FT_Done_Stream => FT_Stream_Close
1763 FT_New_Stream => FT_Stream_Open
1764 FT_New_Memory_Stream => FT_Stream_OpenMemory
1765 FT_Extract_Frame => FT_Stream_ExtractFrame
1767 Note that method names do not contain `_'.
1769 - The FT_ALLOC_ARRAY and FT_REALLOC_ARRAY have been replaced
1770 with FT_NEW_ARRAY and FT_RENEW_ARRAY which do not take a
1771 type as the fourth argument. Instead, the array element
1772 type size is computed automatically from the type of the
1773 target pointer used.
1775 - A new object class, FT_CMap, has been introduced. These
1776 internal objects are used to model character maps. This
1777 eases the support of additional charmap types within the
1780 - A new configuration file named `ftstdlib.h' has been added
1781 to `include/freetype/config'. It is used to define aliases
1782 for _every_ routine of the ISO C library that the font
1783 engine uses. Each aliases has a `ft_' prefix
1784 (e.g. `ft_strlen' is an alias for `strlen').
1786 This is used to ease the porting of FreeType 2 to exotic
1787 runtime environments where the ISO C Library isn't available
1788 (e.g. XFree86 extension modules).
1790 More details are available in the `ChangeLog' file.
1793 ======================================================================
1795 CHANGES BETWEEN 2.0.9 and 2.0.8
1797 I. IMPORTANT BUG FIXES
1799 - Certain fonts like `foxjump.ttf' contain broken name tables with
1800 invalid entries and wild offsets. This caused FreeType to crash
1801 when trying to load them.
1803 The SFNT `name' table loader has been fixed to be able to
1804 support these strange fonts.
1806 Moreover, the code in charge of processing this table has been
1807 changed to always favour Windows-formatted entries over other
1808 ones. Hence, a font that works on Windows but not on the Mac
1809 will load cleanly in FreeType and report accurate values for
1810 Family & PostScript names.
1812 - The CID font driver has been fixed. It unfortunately returned a
1813 Postscript Font name with a leading slash, as in
1814 `/MunhwaGothic-Regular'.
1816 - FreeType 2 should now compile fine on AIX 4.3.3 as a shared
1819 - A bug in the Postscript hinter has been found and fixed,
1820 removing un-even stem widths at small pixel sizes (like 14-17).
1822 This improves the quality of a certain number of Postscript
1828 - A new function named `FT_Library_Version' has been added to
1829 return the current library's major, minor, and patch version
1830 numbers. This is important since the macros FREETYPE_MAJOR,
1831 FREETYPE_MINOR, and FREETYPE_PATCH cannot be used when the
1832 library is dynamically linked by a program.
1834 - Two new APIs have been added: `FT_Get_First_Char' and
1837 Together, these can be used to iterate efficiently over the
1838 currently selected charmap of a given face. Read the API
1839 reference for more details.
1844 - The FreeType sources are under heavy internal re-factoring. As
1845 a consequence, we have created a branch named `STABLE' on the
1846 CVS to hold all future releases/fixes in the 2.0.x family.
1848 The HEAD branch now contains the re-factored sources and
1849 shouldn't be used for testing or packaging new releases. In
1850 case you would like to access the 2.0.9 sources from our CVS
1851 repository, use the tag `VER-2-0-9'.
1854 ======================================================================
1856 CHANGES BETWEEN 2.0.8 and 2.0.7
1858 I. IMPORTANT BUG FIXES
1860 - There was a small but nasty bug in `freetype-config.in' which
1861 caused the `freetype-config' script to fail on Unix.
1863 This didn't prevent the installation of the library or even its
1864 execution, but caused problems when trying to compile many Unix
1865 packages that depend on it.
1867 - Some TrueType or OpenType fonts embedded in PDF documents do not
1868 have a 'cmap', 'post' and 'name' as is required by the
1869 specification. FreeType no longer refuses to load such fonts.
1871 - Various fixes to the PCF font driver.
1874 ======================================================================
1876 CHANGES BETWEEN 2.0.7 and 2.0.6
1878 I. IMPORTANT BUG FIXES
1880 - Fixed two bugs in the Type 1 font driver. The first one
1881 resulted in a memory leak in subtle cases. The other one caused
1882 FreeType to crash when trying to load `.gsf' files (Ghostscript
1883 so-called Postscript fonts).
1885 (This made _many_ KDE applications crash on certain systems.
1886 FreeType _is_ becoming a critical system component on Linux :-)
1888 - Fixed a memory leak in the CFF font driver.
1890 - Fixed a memory leak in the PCF font driver.
1892 - Fixed the Visual C++ project file
1893 `builds/win32/visualc/freetype.dsp' since it didn't include the
1894 Postscript hinter component, causing errors at build time.
1896 - Fixed a small rendering bug in the anti-aliased renderer that
1897 only occurred when trying to draw thin (less than 1 pixel)
1900 - Fixed `builds/unix/freetype2.a4' which is used to generate a
1901 valid `freetype2.m4' for use with autoconf.
1903 - Fixed the OpenVMS Makefiles.
1908 - Added `configure' and `install' scripts to the top-level
1909 directory. A GNU-style installation is thus now easily possible
1912 ./configure <options>
1917 ======================================================================
1919 CHANGES BETWEEN 2.0.6 and 2.0.5
1921 I. IMPORTANT BUG FIXES
1923 - It wasn't possible to load embedded bitmaps when the auto-hinter
1924 was used. This is now fixed.
1926 - The TrueType font driver didn't load some composites properly
1927 (the sub-glyphs were slightly shifted, and this was only
1928 noticeable when using monochrome rendering).
1930 - Various fixes to the auto-hinter. They merely improve the
1931 output of sans-serif fonts. Note that there are still problems
1932 with serifed fonts and composites (accented characters).
1934 - All scalable font drivers erroneously returned un-fitted glyph
1935 advances when hinting was requested. This created problems for
1936 a number of layout applications. This is a very old bug that
1937 got undetected mainly because most test/demo program perform
1938 rounding explicitly or implicitly (through the cache).
1940 - `FT_Glyph_To_Bitmap' did erroneously modify the source glyph in
1943 - `glnames.py' still contained a bug that made FreeType return
1944 invalid names for certain glyphs.
1946 - The library crashed when loading certain Type 1 fonts like
1947 `sadn.pfb' (`Stalingrad Normal'), which appear to contain
1948 pathetic font info dictionaries.
1950 - The TrueType glyph loader is now much more paranoid and checks
1951 everything when loading a given glyph image. This was necessary
1952 to avoid problems (crashes and/or memory overwrites) with broken
1953 fonts that came from a really buggy automatic font converter.
1956 II. IMPORTANT UPDATES AND NEW FEATURES
1958 - Important updates to the Mac-specific parts of the library.
1960 - The caching sub-system has been completely re-designed, and its
1961 API has evolved (the old one is still supported for backward
1964 The documentation for it is not yet completed, sorry. For now,
1965 you are encouraged to continue using the old API. However, the
1966 ftview demo program in the ft2demos package has already been
1967 updated to use the new caching functions.
1969 - A new charmap cache is provided too. See `FTC_CMapCache'. This
1970 is useful to perform character code -> glyph index translations
1971 quickly, without the need for an opened FT_Face.
1973 - A NEW POSTSCRIPT HINTER module has been added to support native
1974 hints in the following formats: PostScript Type 1, PostScript
1977 Please test! Note that the auto-hinter produces better results
1978 for a number of badly-hinted fonts (mostly auto-generated ones)
1981 - A memory debugger is now part of the standard FreeType sources.
1982 To enable it, define FT_DEBUG_MEMORY in
1983 <freetype/config/ftoption.h>, and recompile the library.
1985 Additionally, define the _environment_ variable FT_DEBUG_MEMORY
1986 and run any program using FreeType. When the library is exited,
1987 a summary of memory footprints and possible leaks will be
1990 This works transparently with _any_ program that uses FreeType.
1991 However, you will need a lot of memory to use this (allocated
1992 blocks are never released to the heap to detect double deletes
1998 - We are aware of subtle differences between the output of
1999 FreeType versions 1 and 2 when it comes to monochrome
2000 TrueType-hinted glyphs. These are most probably due to small
2001 differences in the monochrome rasterizers and will be worked out
2002 in an upcoming release.
2004 - We have decided to fork the sources in a `stable' branch, and an
2005 `unstable' one, since FreeType is becoming a critical component
2006 of many Unix systems.
2008 The next bug-fix releases of the library will be named 2.0.7,
2009 2.0.8, etc., while the `2.1' branch will contain a version of
2010 the sources where we will start major reworking of the library's
2011 internals, in order to produce FreeType 2.2.0 (or even 3.0) in a
2012 more distant future.
2014 We also hope that this scheme will allow much more frequent
2015 releases than in the past.
2018 ======================================================================
2020 CHANGES BETWEEN 2.0.5 and 2.0.4
2022 NOTE THAT 2.0.5 DOES NOT CONTAIN THE POSTSCRIPT HINTER. THIS MODULE
2023 WILL BE PART OF THE NEXT RELEASE (EITHER 2.0.6 or 2.1)
2025 - Fixed a bug that made certain glyphs, like `Cacute', `cacute' and
2026 `lslash' unavailable from Unicode charmaps of Postscript fonts.
2027 This prevented the correct display of Polish text, for example.
2029 - The kerning table of Type 1 fonts was loaded by FreeType, when its
2030 AFM file was attached to its face, but the
2031 FT_FACE_FLAG_HAS_KERNING bit flags was not set correctly,
2032 preventing FT_Get_Kerning to return meaningful values.
2034 - Improved SFNT (TrueType & OpenType) charmap support. Slightly
2035 better performance, as well as support for the new formats defined
2036 by the OpenType 1.3 specification (8, 10, and 12)
2038 - Fixed a serious typo in `src/base/ftcalc.c' which caused invalid
2039 computations in certain rare cases, producing ugly artefacts.
2041 - The size of the EM square is computed with a more accurate
2042 algorithm for Postscript fonts. The old one caused slight errors
2043 with embedded fonts found in PDF documents.
2045 - Fixed a bug in the cache manager that prevented normal LRU
2046 behaviour within the cache manager, causing unnecessary reloads
2047 (for FT_Face and FT_Size objects only).
2049 - Added a new function named `FT_Get_Name_Index' to retrieve the
2050 glyph index of a given glyph name, when found in a face.
2052 - Added a new function named `FT_Get_Postscript_Name' to retrieve
2053 the `unique' Postscript font name of a given face.
2055 - Added a new public header size named FT_SIZES_H (or
2056 <freetype/ftsizes.h>) providing new FT_Size-management functions:
2057 FT_New_Size, FT_Activate_Size, FT_Done_Size.
2059 - Fixed a reallocation bug that generated a dangling pointer (and
2060 possibly memory leaks) with Postscript fonts (in
2061 src/psaux/psobjs.c).
2063 - Many fixes for 16-bit correctness.
2065 - Removed many pedantic compiler warnings from the sources.
2067 - Added an Amiga build directory in `builds/amiga'.
2070 ======================================================================
2072 CHANGES BETWEEN 2.0.4 and 2.0.3
2074 - Fixed a rather annoying bug that was introduced in 2.0.3. Namely,
2075 the font transformation set through FT_Set_Transform was applied
2076 twice to auto-hinted glyphs, resulting in incorrectly rotated text
2079 - Fixed _many_ compiler warnings. FT2 should now compile cleanly
2080 with Visual C++'s most pedantic warning level (/W4). It already
2081 compiled fine with GCC and a few other compilers.
2083 - Fixed a bug that prevented the linear advance width of composite
2084 TrueType glyphs to be correctly returned.
2086 - Fixed the Visual C++ project files located in
2087 `builds/win32/visualc' (previous versions used older names of the
2090 - Many 32-bit constants have an `L' appended to their value, in
2091 order to improve the 16-bitness of the code. Someone is actually
2092 trying to use FT2 on an Atari ST machine!
2094 - Updated the `builds/detect.mk' file in order to automatically
2095 build FT2 on AIX systems. AIX uses `/usr/sbin/init' instead of
2096 `/sbin/init' and wasn't previously detected as a Unix platform by
2097 the FreeType build system.
2099 - Updated the Unix-specific portions of the build system (new
2100 libtool version, etc.).
2102 - The SFNT kerning loader now ensures that the table is sorted
2103 (since some problem fonts do not meet this requirement).
2106 =======================================================================
2108 CHANGES BETWEEN 2.0.3 and 2.0.2
2110 I. CHANGES TO THE MODULES / FONT DRIVERS
2112 - THE AUTO-HINTER HAS BEEN SLIGHTLY IMPROVED, in order to fix
2113 several annoying artefacts, mainly:
2115 - Blue zone alignment of horizontal stems wasn't performed
2116 correctly, resulting in artefacts like the `d' being placed
2117 one pixel below the `b' in some fonts like Time New Roman.
2119 - Overshoot thresholding wasn't performed correctly, creating
2120 unpleasant artefacts at large character pixel sizes.
2122 - Composite glyph loading has been simplified. This gets rid
2123 of various artefacts where the components of a composite
2124 glyphs were not correctly spaced.
2126 These are the last changes to the current auto-hinting module.
2127 A new hinting sub-system is currently in the work in order to
2128 support native hints in Type 1 / CFF / OpenType fonts, as well
2129 as globally improve rendering.
2131 - The PCF driver has been fixed. It reported invalid glyph
2132 dimensions for the fonts available on Solaris.
2134 - The Type 1, CID and CFF drivers have been modified to fix the
2135 computation of the EM size.
2137 - The Type 1 driver has been fixed to avoid a dangerous bug that
2138 crashed the library with non-conforming fonts (i.e. ones that do
2139 not place the .notdef glyph at position 0).
2141 - The TrueType driver had a rather subtle bug (dangling pointer
2142 when loading composite glyphs) that could crash the library in
2146 II. HIGH-LEVEL API CHANGES
2148 - The error code enumeration values have been changed. An error
2149 value is decomposed in a generic error code, and a module
2150 number. see <freetype/fterrors.h> for details.
2152 - A new public header file has been introduced, named
2153 FT_TRIGONOMETRY_H (include/freetype/fttrig.h), providing
2154 trigonometric functions to compute sines, cosines, arctangents,
2155 etc. with 16.16 fixed precision. The implementation is based on
2156 the CORDIC algorithm and is very fast while being sufficiently
2162 - Added BeOS-specific files in the old build sub-system. Note
2163 that no changes were required to compile the library with Jam.
2165 - The configuration is now capable of automatically detecting
2166 64-bit integers on a set of predefined compilers (GCC, Visual
2167 C++, Borland C++) and will use them by default. This provides a
2168 small performance boost.
2170 - A small memory leak that happened when opening 0-sized files
2171 (duh!) have been fixed.
2173 - Fixed bezier stack depth bug in the routines provided by the
2174 FT_BBOX_H header file. Also fixed similar bugs in the
2177 - The outline bounding box code has been rewritten to use direct
2178 computations, instead of bezier sub-division, to compute the
2179 exact bounding box of glyphs. This is slightly slower but more
2182 - The build system has been improved and fixed, mainly to support
2183 `make' on Windows 2000 correctly, avoid problems with `make
2184 distclean' on non Unix systems, etc.
2186 - Hexadecimal constants have been suffixed with `U' to avoid
2187 problems with certain compilers on 64-bit platforms.
2189 - A new directory named `src/tools' has been created. It contains
2190 Python scripts and simple unit test programs used to develop the
2193 - The DocMaker tool has been moved from `docs' to `src/tools' and
2194 has been updated with the following:
2196 - Now accepts the `--title=XXXX' or `-t XXXX' option from the
2197 command line to set the project's name in the generated API
2200 - Now accepts the `--output=DIR' or `-o DIR' option from the
2201 command line to set the output directory for all generated
2204 - Now accepts the `--prefix=XXXX' or `-p XXX' option from the
2205 command line to set the file prefix to use for all
2206 generated HTML files.
2208 - Now generates the current time/data on each generated page
2209 in order to distinguish between versions.
2211 DocMaker can be used with other projects now, not only FT2
2212 (e.g. MLib, FTLayout, etc.).
2215 ======================================================================
2217 CHANGES BETWEEN 2.0.2 and 2.0.1
2219 I. CHANGES TO THE MODULES / FONT DRIVERS
2221 - THE TRUETYPE BYTECODE INTERPRETER IS NOW TURNED OFF, in order to
2222 avoid legal problems with the Apple patents. It seems that we
2223 mistakenly turned this option on in previous releases of the
2226 Note that if you want to use the bytecode interpreter in order
2227 to get high-quality TrueType rendering, you will need to toggle
2228 by hand the definition of the
2229 TT_CONFIG_OPTION_BYTECODE_INTERPRETER macro in the file
2230 `include/freetype/config/ftoption.h'.
2232 - The CFF driver has been improved by Tom Kacvinsky and Sander van
2235 * Support for `seac' emulation.
2236 * Support for `dotsection'.
2237 * Support for retrieving glyph names through
2238 `FT_Get_Glyph_Name'.
2240 The first two items are necessary to correctly a large number of
2241 Type 1 fonts converted to the CFF formats by Adobe Acrobat.
2243 - The Type 1 driver was also improved by Tom & others:
2245 * Better EM size computation.
2246 * Better support for synthetic (transformed) fonts.
2247 * The Type 1 driver returns the charstrings corresponding to
2248 each glyph in the `glyph->control_data' field after a call to
2249 `FT_Load_Glyph' (thanks Ha Shao).
2251 - Various other bugfixes, including the following:
2253 * Fixed a nasty memory leak in the Type 1 driver.
2254 * The autohinter and the pcf driver used static writable data
2255 when they shouldn't.
2256 * Many casts were added to make the code more 64-bits safe. It
2257 also now compiles on Windows XP 64-bits without warnings.
2258 * Some incorrect writable statics were removed in the `autohint'
2259 and `pcf' drivers. FreeType 2 now compiles on Epoc again.
2262 II. CHANGES TO THE HIGH-LEVEL API
2264 - The library header files inclusion scheme has been changed. The
2265 old scheme looked like:
2267 #include <freetype/freetype.h>
2268 #include <freetype/ftglyph.h>
2269 #include <freetype/ftcache.h>
2270 #include <freetype/cache/ftimage.h>
2274 #include <ft2build.h>
2275 #include FT_FREETYPE_H
2278 #include FT_CACHE_IMAGE_H
2280 NOTE THAT THE OLD INCLUSION SCHEME WILL STILL WORK WITH THIS
2281 RELEASE. HOWEVER, WE DO NOT GUARANTEE THAT THIS WILL STILL BE
2282 TRUE IN THE NEXT ONE (A.K.A. FREETYPE 2.1).
2284 The file <ft2build.h> is used to define the header filename
2285 macros. The complete and commented list of macros is available
2286 in the API reference under the section name `Header File Macros'
2289 For more information, see section I of the following document:
2291 http://www.freetype.org/
2292 freetype2/docs/tutorial/step1.html
2296 http://freetype.sourceforge.net/
2297 freetype2/docs/tutorial/step1.html
2299 - Many, many comments have been added to the public source file in
2300 order to automatically generate the API Reference through the
2301 `docmaker.py' Python script.
2303 The latter has been updated to support the grouping of sections
2304 in chapters and better index sort. See:
2306 http://www.freetype.org/freetype2/docs/reference/ft2-toc.html
2309 III. CHANGES TO THE BUILD PROCESS
2311 - If you are not building FreeType 2 with its own build system
2312 (but with your own Makefiles or project files), you will need to
2313 be aware that the build process has changed a little bit.
2315 You don't need to put the `src' directory in the include path
2316 when compiling any FT2 component. Instead, simply put the
2317 component's directory in the current include path.
2319 So, if you were doing something like:
2321 cc -c -Iinclude -Isrc src/base/ftbase.c
2325 cc -c -Iinclude -Isrc/base src/base/ftbase.c
2327 If you were doing something like:
2330 cc -c -I../../include -I.. ftbase.c
2335 cc -c -I../../include ftbase.c
2338 ======================================================================
2340 CHANGES BETWEEN 2.0.1 and 2.0
2342 2.0.1 introduces a few changes:
2344 - Fixed many bugs related to the support of CFF / OpenType fonts.
2345 These formats are now much better supported though there is
2346 still work planned to deal with charset tables and PDF-embedded
2347 CFF files that use the old `seac' command.
2349 - The library could not be compiled in debug mode with a very
2350 small number of C compilers whose pre-processors didn't
2351 implement the `##' directive correctly (i.e. per se the ANSI C
2352 specification!) An elegant fix was found.
2354 - Added support for the free Borland command-line C++ Builder
2355 compiler. Use `make setup bcc32'. Also fixed a few source
2356 lines that generated new warnings with BCC32.
2358 - Fixed a bug in FT_Outline_Get_BBox when computing the extrema of
2361 - Updated the INSTALL file to add IDE compilation.
2363 - Other minor bug fixes, from invalid Type 1 style flags to
2364 correct support of synthetic (obliqued) fonts in the
2365 auto-hinter, better support for embedded bitmaps in a SFNT font.
2367 - Fixed some problems with `freetype-config'.
2369 Finally, the `standard' scheme for including FreeType headers is now
2370 gradually changing, but this will be explained in a later release
2373 And very special thanks to Tom Kacvinsky and YAMANO-UCHI Hidetoshi
2374 for their contributions!
2377 ======================================================================
2379 CHANGES BETWEEN beta8 and 2.0
2381 - Changed the default installation path for public headers from
2382 `include/freetype' to `include/freetype2'.
2384 Also added a new `freetype-config' that is automatically generated
2385 and installed on Unix and Cygwin systems. The script itself is
2386 used to retrieve the current install path, C compilation flags as
2387 well as linker flags.
2389 - Fixed several small bugs:
2391 * Incorrect max advance width for fixed-pitch Type 1 fonts.
2392 * Incorrect glyph names for certain TrueType fonts.
2393 * The glyph advance was not copied when FT_Glyph_To_Bitmap was
2395 * The linearHoriAdvance and linearVertAdvance fields were not
2396 correctly returned for glyphs processed by the auto-hinter.
2397 * `type1z' renamed back to `type1'; the old `type1' module has
2400 - Revamped the build system to make it a lot more generic. This
2401 will allow us to re-use nearly un-modified in lots of other
2402 projects (including FreeType Layout).
2404 - Changed `cid' to use `psaux' too.
2406 - Added the cache sub-system. See <freetype/ftcache.h> as well as
2407 the sources in `src/cache'. Note that it compiles but is still
2410 - Updated `docs/docmaker.py', a draft API reference is available at
2411 http://www.freetype.org/ft2api.html.
2413 - Changed `type1' to use `psaux'.
2415 - Created a new module named `psaux' to hold the Type 1 & Type 2
2416 parsing routines. It should be used by `type1', `cid', and `cff'
2419 - Fixed an important bug in `FT_Glyph_Get_CBox'.
2421 - Fixed some compiler warnings that happened since the TrueType
2422 bytecode decoder was deactivated by default.
2424 - Fixed two memory leaks:
2426 * The memory manager (16 bytes) isn't released in
2428 * Using custom input streams, the copy of the original stream was
2431 - Fixed the auto-hinter by performing automatic computation of the
2432 `filling direction' of each glyph. This is done through a simple
2433 and fast approximation, and seems to work (problems spotted by
2434 Werner though). The Arphic fonts are a lot nicer though there are
2435 still a lot of things to do to handle Asian fonts correctly.
2438 ======================================================================
2440 BETA-8 (RELEASE CANDIDATE) CHANGES
2442 - Deactivated the TrueType bytecode interpreter by default.
2444 - Deactivated the `src/type1' font driver. Now `src/type1z' is used
2447 - Updates to the build system. We now compile the library correctly
2448 under Unix system through `configure' which is automatically
2449 called on the first `make' invocation.
2451 - Added the auto-hinting module! Fixing some bugs here and there.
2453 - Found some bugs in the composite loader (seac) of the Type1-based
2456 - Renamed the directory `freetype2/config' to `freetype2/builds' and
2457 updated all relevant files.
2459 - Found a memory leak in the `type1' driver.
2461 - Incorporated Tom's patches to support flex operators correctly in
2462 OpenType/CFF fonts. Now all I need is to support pure CFF and CEF
2463 fonts to be done with this driver :-)
2465 - Added the Windows FNT/FON driver in `src/winfonts'. For now, it
2466 always `simulates' a Unicode charmap, so it shouldn't be
2467 considered completed right now.
2469 It is there to be more a proof of concept than anything else
2470 anyway. The driver is a single C source file, that compiles to 3
2473 I'm still working on the PCF/BDF drivers, but I'm too lazy to
2476 - CHANGES TO THE HIGH-LEVEL API
2478 * FT_Get_Kerning has a new parameter that allows you to select the
2479 coordinates of the kerning vector (font units, scaled, scaled +
2481 * The outline functions are now in <freetype/ftoutln.h> and not
2482 part of <freetype/freetype.h> anymore.
2483 * <freetype/ftmodule.h> now contains declarations for
2484 FT_New_Library, FT_Done_Library, FT_Add_Default_Modules.
2485 * The so-called convenience functions have moved from `ftoutln.c'
2486 to `ftglyph.c', and are thus available with this optional
2487 component of the library. They are declared in
2488 <freetype/ftglyph.h> now.
2489 * Anti-aliased rendering is now the default for FT_Render_Glyph
2490 (i.e. corresponds to render_mode == 0 == ft_render_mode_normal).
2491 To generate a monochrome bitmap, use ft_render_mode_mono, or the
2492 FT_LOAD_MONOCHROME flag in FT_Load_Glyph/FT_Load_Char.
2493 FT_LOAD_ANTI_ALIAS is still defined, but values to 0.
2494 * <freetype/freetype.h> now include <freetype/config/ftconfig.h>,
2495 solving a few headaches :-)
2496 * The type FT_GlyphSlotRec has now a `library' field.
2498 - CHANGES TO THE `ftglyph.h' API
2500 This API has been severely modified in order to make it simpler,
2501 clearer, and more efficient. It certainly now looks like a real
2502 `glyph factory' object, and allows client applications to manage
2503 (i.e. transform, bbox and render) glyph images without ever
2504 knowing their original format.
2506 - Added support for CID-keyed fonts to the CFF driver. Maybe
2507 support for pure CFF + CEF fonts should come in?
2509 - Cleaned up source code in order to avoid two functions with the
2510 same name. Also changed the names of the files in `type1z' from
2511 `t1XXXX' to `z1XXXX' in order to avoid any conflicts.
2513 `make multi' now works well :-)
2515 Also removed the use of `cidafm' for now, even if the source files
2516 are still there. This functionality will certainly go into a
2519 - ADDED SUPPORT FOR THE AUTO-HINTER
2521 It works :-) I have a demo program which simply is a copy of
2522 `ftview' that does a `FT_Add_Module(library,
2523 &autohinter_module_class)' after library initialization, and Type
2524 1 & OpenType/CFF fonts are now hinted.
2526 CID fonts are not hinted, as they include no charmap and the
2527 auto-hinter doesn't include `generic' global metrics computations
2530 Now, I need to release this thing to the FreeType 2 source.
2532 - CHANGES TO THE RENDERER MODULES
2534 The monochrome and smooth renderers are now in two distinct
2535 directories, namely `src/raster1' and `src/smooth'. Note that the
2536 old `src/renderer' is now gone.
2538 I ditched the 5-gray-levels renderers. Basically, it involved a
2539 simple #define toggle in 'src/raster1/ftraster.c'.
2541 FT_Render_Glyph, FT_Outline_Render & FT_Outline_Get_Bitmap now
2542 select the best renderer available, depending on render mode. If
2543 the current renderer for a given glyph image format isn't capable
2544 of supporting the render mode, another one will be found in the
2545 library's list. This means that client applications do not need
2546 to switch or set the renderers themselves (as in the latest
2547 change), they'll get what they want automatically. At last.
2549 Changed the demo programs accordingly.
2551 - MAJOR INTERNAL REDESIGN:
2553 A lot of internal modifications have been performed lately on the
2554 source in order to provide the following enhancements:
2556 * More generic module support:
2558 The FT_Module type is now defined to represent a handle to a
2559 given module. The file <freetype/ftmodule.h> contains the
2560 FT_Module_Class definition, as well as the module-loading public
2563 The FT_Driver type is still defined, and still represents a
2564 pointer to a font driver. Note that FT_Add_Driver is replaced
2565 by FT_Add_Module, FT_Get_Driver by FT_Get_Module, etc.
2567 * Support for generic glyph image types:
2569 The FT_Renderer type is a pointer to a module used to perform
2570 various operations on glyph image.
2572 Each renderer is capable of handling images in a single format
2573 (e.g. ft_glyph_format_outline). Its functions are used to:
2575 - transform an glyph image
2576 - render a glyph image into a bitmap
2577 - return the control box (dimensions) of a given glyph image
2579 The scan converters `ftraster.c' and `ftgrays.c' have been moved
2580 to the new directory `src/renderer', and are used to provide two
2581 default renderer modules.
2583 One corresponds to the `standard' scan-converter, the other to
2586 he current renderer can be set through the new function
2589 The old raster-related function FT_Set_Raster, FT_Get_Raster and
2590 FT_Set_Raster_Mode have now disappeared, in favor of the new:
2595 See the file <freetype/ftrender.h> for more details.
2597 These changes were necessary to properly support different
2598 scalable formats in the future, like bi-color glyphs, etc.
2600 * Glyph loader object:
2602 A new internal object, called a 'glyph loader' has been
2603 introduced in the base layer. It is used by all scalable format
2604 font drivers to load glyphs and composites.
2606 This object has been created to reduce the code size of each
2607 driver, as each one of them basically re-implemented its
2610 See <freetype/internal/ftobjs.h> and the FT_GlyphLoader type for
2613 * FT_GlyphSlot has new fields:
2615 In order to support extended features (see below), the
2616 FT_GlyphSlot structure has a few new fields:
2620 This field gives the linearly scaled (i.e. scaled but
2621 unhinted) advance width for the glyph, expressed as a 16.16
2622 fixed pixel value. This is useful to perform WYSIWYG text.
2625 This field gives the linearly scaled advance height for the
2626 glyph (relevant in vertical glyph layouts only). This is
2627 useful to perform WYSIWYG text.
2629 Note that the two above field replace the removed `metrics2'
2630 field in the glyph slot.
2633 This field is a vector that gives the transformed advance for
2634 the glyph. By default, it corresponds to the advance width,
2635 unless FT_LOAD_VERTICAL_LAYOUT was specified when calling
2636 FT_Load_Glyph or FT_Load_Char.
2639 This field gives the distance in integer pixels from the
2640 current pen position to the left-most pixel of a glyph image
2641 IF IT IS A BITMAP. It is only valid when the `format' field
2642 is set to `ft_glyph_format_bitmap', for example, after calling
2643 the new function FT_Render_Glyph.
2646 This field gives the distance in integer pixels from the
2647 current pen position (located on the baseline) to the top-most
2648 pixel of the glyph image IF IT IS A BITMAP. Positive values
2649 correspond to upwards Y.
2652 This is a new private field for the glyph slot. Client
2653 applications should not touch it.
2656 * Support for transforms and direct rendering in FT_Load_Glyph:
2658 Most of the functionality found in <freetype/ftglyph.h> has been
2659 moved to the core library. Hence, the following:
2661 - A transform can be specified for a face through
2662 FT_Set_Transform. this transform is applied by FT_Load_Glyph
2663 to scalable glyph images (i.e. NOT TO BITMAPS) before the
2664 function returns, unless the bit flag FT_LOAD_IGNORE_TRANSFORM
2665 was set in the load flags.
2667 - Once a glyph image has been loaded, it can be directly
2668 converted to a bitmap by using the new FT_Render_Glyph
2669 function. Note that this function takes the glyph image from
2670 the glyph slot, and converts it to a bitmap whose properties
2671 are returned in `face.glyph.bitmap', `face.glyph.bitmap_left'
2672 and `face.glyph.bitmap_top'. The original native image might
2673 be lost after the conversion.
2675 - When using the new bit flag FT_LOAD_RENDER, the FT_Load_Glyph
2676 and FT_Load_Char functions will call FT_Render_Glyph
2677 automatically when needed.
2679 - Reformatted all modules source code in order to get rid of the
2680 basic data types redifinitions (i.e. `TT_Int' instead of `FT_Int',
2681 `T1_Fixed' instead of `FT_Fixed'). Hence the format-specific
2682 prefixes like `TT_', `T1_', `T2_' and `CID_' are only used for
2683 relevant structures.
2686 ======================================================================
2688 OLD CHANGES FOR BETA 7
2690 - bug-fixed the OpenType/CFF parser. It now loads and displays my
2691 two fonts nicely, but I'm pretty certain that more testing is
2694 - fixed the crummy Type 1 hinter, it now handles accented characters
2695 correctly (well, the accent is not always well placed, but that's
2698 - added the CID-keyed Type 1 driver in `src/cid'. Works pretty well
2699 for only 13 Kb of code ;-) Doesn't read AFM files though, nor the
2700 really useful CMAP files..
2702 - fixed two bugs in the smooth renderer (src/base/ftgrays.c).
2703 Thanks to Boris Letocha for spotting them and providing a fix.
2705 - fixed potential `divide by zero' bugs in ftcalc.c.
2707 - added source code for the OpenType/CFF driver (still incomplete
2710 - modified the SFNT driver slightly to perform more robust header
2711 checks in TT_Load_SFNT_Header. This prevents certain font files
2712 (e.g. some Type 1 Multiple Masters) from being incorrectly
2713 `recognized' as TrueType font files..
2715 - moved a lot of stuff from the TrueType driver to the SFNT module,
2716 this allows greater code re-use between font drivers
2717 (e.g. TrueType, OpenType, Compact-TrueType, etc..)
2719 - added a tiny segment cache to the SFNT Charmap 4 decoder, in order
2720 to minimally speed it up..
2722 - added support for Multiple Master fonts in `type1z'. There is
2723 also a new file named <freetype/ftmm.h> which defines functions to
2724 manage them from client applications.
2726 The new file `src/base/ftmm.c' is also optional to the engine..
2728 - various formatting changes (e.g. EXPORT_DEF -> FT_EXPORT_DEF) +
2729 small bug fixes in FT_Load_Glyph, the `type1' driver, etc..
2731 - a minor fix to the Type 1 driver to let them apply the font matrix
2732 correctly (used for many oblique fonts..)
2734 - some fixes for 64-bit systems (mainly changing some FT_TRACE calls
2735 to use %p instead of %lx). Thanks to Karl Robillard.
2737 - fixed some bugs in the sbit loader (src/base/sfnt/ttsbit.c) +
2738 added a new flag, FT_LOAD_CROP_BITMAP to query that bitmaps be
2739 cropped when loaded from a file (maybe I should move the bitmap
2740 cropper to the base layer ??).
2742 - changed the default number of gray levels of the smooth renderer
2743 to 256 (instead of the previous 128). Of course, the human eye
2744 can't see any difference ;-)
2746 - removed TT_MAX_SUBGLYPHS, there is no static limit on the number
2747 of subglyphs in a TrueType font now..
2750 ======================================================================
2752 OLD CHANGES 16 May 2000
2754 - tagged `BETA-6' in the CVS tree. This one is a serious release
2755 candidate even though it doesn't incorporate the auto-hinter yet..
2757 - various obsolete files were removed, and copyright header updated
2759 - finally updated the standard raster to fix the monochrome
2760 rendering bug + re-enable support for 5-gray levels anti-aliasing
2763 - created new header files, and modified sources accordingly:
2765 <freetype/fttypes.h>
2766 - simple FreeType types, without the API
2767 <freetype/internal/ftmemory.h>
2768 - definition of memory-management macros
2770 - added the `DSIG' (OpenType Digital Signature) tag to
2773 - light update/cleaning of the build system + changes to the sources
2774 in order to get rid of _all_ compiler warnings with three
2777 gcc with `-ansi -pedantic -Wall -W', Visual C++ with `/W3 /WX' and
2780 IMPORTANT NOTE FOR WIN32-LCC USERS:
2782 | It seems the C pre-processor that comes with LCC is broken, it
2783 | doesn't recognize the ANSI standard directives # and ##
2784 | correctly when one of the argument is a macro. Also,
2787 | #define F(x) print##x
2791 | will get incorrectly translated to:
2795 | by its pre-processor. For this reason, you simply cannot build
2796 | FreeType 2 in debug mode with this compiler..
2798 - yet another massive grunt work. I've changed the definition of
2799 the EXPORT_DEF, EXPORT_FUNC, BASE_DEF & BASE_FUNC macros. These
2800 now take an argument, which is the function's return value type.
2802 This is necessary to compile FreeType as a DLL on Windows and
2803 OS/2. Depending on the compiler used, a compiler-specific keyword
2804 like __export or __system must be placed before (VisualC++) or
2805 after (BorlandC++) the type..
2807 Of course, this needed a lot of changes throughout the source code
2808 to make it compile again... All cleaned up now, apparently..
2810 Note also that there is a new EXPORT_VAR macro defined to allow
2811 the _declaration_ of an exportable public (constant)
2812 variable. This is the case of the raster interfaces (see
2813 ftraster.h and ftgrays.h), as well as each module's interface (see
2814 sfdriver.h, psdriver.h, etc..)
2816 - new feature: it is now possible to pass extra parameters to font
2817 drivers when creating a new face object. For now,
2818 this capability is unused. It could however prove to
2819 be useful in a near future..
2821 the FT_Open_Args structure was changes, as well as the internal
2822 driver interface (the specific `init_face' module function has
2823 now a different signature).
2825 - updated the tutorial (not finished though).
2827 - updated the top-level BUILD document
2829 - fixed a potential memory leak that could occur when loading
2832 - added the declaration of FT_New_Memory_Face in
2833 <freetype/freetype.h>, as it was missing from the public header
2834 (the implementation was already in `ftobjs.c').
2836 - the file <freetype/fterrors.h> has been seriously updated in order
2837 to allow the automatic generation of error message tables. See
2838 the comments within it for more information.
2840 - major directory hierarchy re-organisation. This was done for two
2843 * first, to ease the `manual' compilation of the library by
2844 requiring at lot less include paths :-)
2846 * second, to allow external programs to effectively access
2847 internal data fields. For example, this can be extremely
2848 useful if someone wants to write a font producer or a font
2849 manager on top of FreeType.
2851 Basically, you should now use the 'freetype/' prefix for header
2854 #include <freetype/freetype.h>
2855 #include <freetype/ftglyph.h>
2857 Some new include sub-directories are available:
2859 a. the `freetype/config' directory, contains two files used to
2860 configure the build of the library. Client applications
2861 should not need to look at these normally, but they can if
2864 #include <freetype/config/ftoption.h>
2865 #include <freetype/config/ftconfig.h>
2867 b. the `freetype/internal' directory, contains header files that
2868 describes library internals. These are the header files that
2869 were previously found in the `src/base' and `src/shared'
2873 As usual, the build system and the demos have been updated to
2874 reflect the change..
2876 Here's a layout of the new directory hierarchy:
2905 Compiling a module is now much easier, for example, the following
2906 should work when in the TOP_DIR directory on an ANSI build:
2908 gcc -c -I./include -I./src/base src/base/ftbase.c
2909 gcc -c -I./include -I./src/sfnt src/sfnt/sfnt.c
2912 (of course, using -Iconfig/<system> if you provide system-specific
2913 configuration files).
2915 - updated the structure of FT_Outline_Funcs in order to allow direct
2916 coordinate scaling within the outline decomposition routine (this
2917 is important for virtual `on' points with TrueType outlines) +
2918 updates to the rasters to support this..
2920 - updated the OS/2 table loading code in `src/sfnt/ttload.c' in
2921 order to support version 2 of the table (see OpenType 1.2 spec)
2923 - created `include/tttables.h' and `include/t1tables.h' to allow
2924 client applications to access some of the SFNT and T1 tables of a
2925 face with a procedural interface (see `FT_Get_Sfnt_Table') +
2926 updates to internal source files to reflect the change..
2928 - some cleanups in the source code to get rid of warnings when
2929 compiling with the `-Wall -W -ansi -pedantic' options in gcc.
2931 - debugged and moved the smooth renderer to `src/base/ftgrays.c' and
2932 its header to `include/ftgrays.h'
2934 - updated TT_MAX_SUBGLYPHS to 96 as some CJK fonts have composites
2935 with up to 80 sub-glyphs !! Thanks to Werner
2938 ======================================================================
2940 OLD CHANGES - 14-apr-2000
2942 - fixed a bug in the TrueType glyph loader that prevented the
2943 correct loading of some CJK glyphs in mingli.ttf
2945 - improved the standard Type 1 hinter in `src/type1'
2947 - fixed two bugs in the experimental Type 1 driver in `src/type1z'
2948 to handle the new XFree86 4.0 fonts (and a few other ones..)
2950 - the smooth renderer is now complete and supports sub-banding to
2951 render large glyphs at high speed. However, it is still located
2952 in `demos/src/ftgrays.c' and should move to the library itself in
2953 the next beta. NOTE: The smooth renderer doesn't compile in
2954 stand-alone mode anymore, but this should be fixed RSN..
2956 - introduced convenience functions to more easily deal with glyph
2957 images, see `include/ftglyph.h' for more details, as well as the
2958 new demo program named `demos/src/ftstring.c' that demonstrates
2961 - implemented FT_LOAD_NO_RECURSE in both the TrueType and Type 1
2962 drivers (this is required by the auto-hinter to improve its
2965 - changed the raster interface, in order to allow client
2966 applications to provide their own span-drawing callbacks.
2967 However, only the smooth renderer supports this. See
2968 `FT_Raster_Params' in the file `include/ftimage.h'.
2970 - fixed a small bug in FT_MulFix that caused incorrect transform
2973 - Note: The tutorial is out-of-date.
2976 ======================================================================
2978 OLD CHANGES - 12-mar-2000
2980 - changed the layout of configuration files : now, all ANSI
2981 configuration files are located in
2982 `freetype2/config'. System-specific over-rides can be placed in
2983 `freetype2/config/<system>'.
2985 - moved all configuration macros to `config/ftoption.h'
2987 - improvements in the Type 1 driver with AFM support
2989 - changed the fields in the FT_Outline structure : the old `flags'
2990 array is re-named `tags', while all ancient flags are encoded into
2991 a single unsigned int named `flags'.
2993 - introduced new flags in FT_Outline.flags (see
2994 ft_outline_.... enums in `ftimage.h').
2996 - changed outline functions to `FT_Outline_<action>' syntax
2998 - added a smooth anti-alias renderer to the demonstration programs
3000 - added Mac graphics driver (thanks Just)
3002 - FT_Open_Face changed in order to received a pointer to a
3003 FT_Open_Args descriptor..
3005 - various cleanups, a few more API functions implemented (see
3011 ======================================================================
3013 OLD CHANGES - 22-feb-2000
3015 - introduced the `psnames' module. It is used to:
3017 o convert a Postscript glyph name into the equivalent Unicode
3018 character code (used by the Type 1 driver(s) to synthesize on
3019 the fly a Unicode charmap).
3021 o provide an interface to retrieve the Postscript names of the
3022 Macintosh, Adobe Standard & Adobe Expert character codes.
3023 (the Macintosh names are used by the SFNT-module postscript
3024 names support routines, while the other two tables are used by
3025 the Type 1 driver(s)).
3027 - introduced the `type1z' alternate Type 1 driver. This is a (still
3028 experimental) driver for the Type 1 format that will ultimately
3029 replace the one in `src/type1'. It uses pattern matching to load
3030 data from the font, instead of a finite state analyzer. It works
3031 much better than the `old' driver with `broken' fonts. It is also
3032 much smaller (under 15 Kb).
3034 - the Type 1 drivers (both in `src/type1' and `src/type1z') are
3035 nearly complete. They both provide automatic Unicode charmap
3036 synthesis through the `psnames' module. No re-encoding vector is
3037 needed. (note that they still leak memory due to some code
3038 missing, and I'm getting lazy).
3040 Trivial AFM support has been added to read kerning information but
3041 wasn't exactly tested as it should ;-)
3043 - The TrueType glyph loader has been seriously rewritten (see the
3044 file `src/truetype/ttgload.c'. It is now much, much simpler as
3045 well as easier to read, maintain and understand :-) Preliminary
3046 versions introduced a memory leak that has been reported by Jack
3047 Davis, and is now fixed..
3049 - introduced the new `ft_glyph_format_plotter', used to represent
3050 stroked outlines like Windows `Vector' fonts, and certain Type 1
3051 fonts like `Hershey'. The corresponding raster will be written
3054 - FT_New_Memory_Face is gone. Likewise, FT_Open_Face has a new
3055 interface that uses a structure to describe the input stream, the
3056 driver (if required), etc..
3061 - Write FT_Get_Glyph_Bitmap and FT_Load_Glyph_Bitmap
3063 - Add a function like FT_Load_Character(face, char_code, load_flags)
3064 that would really embed a call to FT_Get_Char_Index then
3065 FT_Load_Glyph to ease developer's work.
3067 - Update the tutorial!
3069 - consider adding support for Multiple Master fonts in the Type 1
3072 - Test the AFM routines of the Type 1 drivers to check that kerning
3073 information is returned correctly.
3075 - write a decent auto-gridding component !! We need this to release
3081 - add a CFF/Type2 driver
3083 - add a FNT/PCF/HBF driver
3084 - add a Speedo driver from the X11 sources
3087 ======================================================================
3089 OLDER CHANGES - 27-jan-2000
3091 - updated the `sfnt' module interface to allow several SFNT-based
3092 drivers to co-exist peacefully
3094 - updated the `T1_Face' type to better separate Postscript font
3095 content from the rest of the FT_Face structure. Might be used
3096 later by the CFF/Type2 driver..
3098 - added an experimental replacement Type 1 driver featuring advanced
3099 (and speedy) pattern matching to retrieve the data from postscript
3102 - very minor changes in the implementation of FT_Set_Char_Size and
3103 FT_Set_Pixel_Sizes (they now implement default to lighten the font
3107 ======================================================================
3111 This file summarizes the changes that occurred since the last `beta'
3112 of FreeType 2. Because the list is important, it has been divided into
3117 I High-Level Interface (easier !)
3118 II Directory Structure
3119 III Glyph Image Formats
3125 ----------------------------------------------------------------------
3127 High-Level Interface:
3129 The high-level API has been considerably simplified. Here is how:
3131 - resource objects have disappeared. this means that face objects
3132 can now be created with a single function call (see FT_New_Face
3135 - when calling either FT_New_Face & FT_Open_Face, a size object
3136 and a glyph slot object are automatically created for the face,
3137 and can be accessed through `face->glyph' and `face->size' if
3138 one really needs to. In most cases, there's no need to call
3139 FT_New_Size or FT_New_Glyph.
3141 - similarly, FT_Load_Glyph now only takes a `face' argument
3142 (instead of a glyph slot and a size). Also, its `result'
3143 parameter is gone, as the glyph image type is returned in the
3144 field `face->glyph.format'
3146 - the list of available charmaps is directly accessible through
3147 `face->charmaps', counting `face->num_charmaps' elements. Each
3148 charmap has an 'encoding' field which specifies which known
3149 encoding it deals with. Valid values are, for example:
3151 ft_encoding_unicode (for ASCII, Latin-1 and Unicode)
3152 ft_encoding_apple_roman
3154 ft_encoding_adobe_standard
3155 ft_encoding_adobe_expert
3157 other values may be added in the future. Each charmap still
3158 holds its `platform_id' and `encoding_id' values in case the
3159 encoding is too exotic for the current library
3162 ----------------------------------------------------------------------
3164 Directory Structure:
3166 Should seem obvious to most of you:
3169 config/ -- configuration sub-makefiles
3171 unix/ -- platform-specific configuration files
3176 include/ -- public header files, those to be included
3177 directly by client apps
3179 src/ -- sources of the library
3180 base/ -- the base layer
3181 sfnt/ -- the sfnt `driver' (see the drivers section
3183 truetype/ -- the truetype driver
3184 type1/ -- the type1 driver
3185 shared/ -- some header files shared between drivers
3187 demos/ -- demos/tools
3189 docs/ -- documentation (a bit empty for now)
3192 ----------------------------------------------------------------------
3194 Glyph Image Formats:
3196 Drivers are now able to register new glyph image formats within the
3197 library. For now, the base layer supports of course bitmaps and
3198 vector outlines, but one could imagine something different like
3199 colored bitmaps, bi-color vectors or whatever else (Metafonts anyone
3202 See the file `include/ftimage.h'. Note also that the type
3203 FT_Raster_Map is gone, and is now replaced by FT_Bitmap, which
3204 should encompass all known bitmap types.
3206 Each new image format must provide at least one `raster', i.e. a
3207 module capable of transforming the glyph image into a bitmap. It's
3208 also possible to change the default raster used for a given glyph
3211 The default outline scan-converter now uses 128 levels of grays by
3212 default, which tends to smooth many things. Note that the demo
3213 programs have been updated significantly in order to display these..
3216 ----------------------------------------------------------------------
3220 You still need GNU Make to build the library. The build system has
3221 been very seriously re-vamped in order to provide things like :
3223 - automatic host platform detection (reverting to 'config/ansi' if
3224 it is not detected, with pseudo-standard compilation flags)
3226 - the ability to compile from the Makefiles with very different and
3227 exotic compilers. Note that linking the library can be difficult
3230 For example, the file `config/win32/lcclib.bat' is invoked by the
3231 build system to create the `.lib' file with LCC-Win32 because its
3232 librarian has too many flaws to be invoked directly from the
3235 Here's how it works:
3237 - the first time you type `make', the build system runs a series of
3238 sub-makefiles in order to detect your host platform. It then
3239 dumps what it found, and creates a file called `config.mk' in the
3240 current directory. This is a sub-Makefile used to define many
3241 important Make variables used to build the library.
3243 - the second time, the build system detects the `config.mk' then use
3244 it to build the library. All object files go into 'obj' by
3245 default, as well as the library file, but this can easily be
3248 Note that you can run `make setup' to force another host platform
3249 detection even if a `config.mk' is present in the current
3250 directory. Another solution is simply to delete the file, then
3253 Finally, the default compiler for all platforms is gcc (for now,
3254 this will hopefully changed in the future). You can however specify
3255 a different compiler by specifying it after the 'setup' target as
3258 gnumake setup lcc on Win32 to use the LCC compiler
3259 gnumake setup visualc on Win32 to use Visual C++
3261 See the file `config/<system>/detect.mk' for a list of supported
3262 compilers for your platforms.
3264 It should be relatively easy to write new detection rules files and
3267 Finally, to build the demo programs, go to `demos' and launch GNU
3268 Make, it will use the `config.mk' in the top directory to build the
3272 ----------------------------------------------------------------------
3276 In the previous beta, a single FT_System object was used to
3277 encompass all low-level operations like thread synchronisation,
3278 memory management and i/o access. This has been greatly simplified:
3280 - thread synchronisation has been dropped, for the simple reason
3281 that the library is already re-entrant, and that if you really
3282 need two threads accessing the same FT_Library, you should
3283 really synchronize access to it yourself with a simple mutex.
3285 - memory management is performed through a very simple object
3286 called `FT_Memory', which really is a table containing a table
3287 of pointers to functions like malloc, realloc and free as well
3288 as some user data (closure).
3290 - resources have disappeared (they created more problems than they
3291 solved), and i/o management have been simplified greatly as a
3292 result. Streams are defined through FT_Stream objects, which
3293 can be either memory-based or disk-based.
3295 Note that each face has its own stream, which is closed only
3296 when the face object is destroyed. Hence, a function like
3297 TT_Flush_Face in 1.x cannot be directly supported. However, if
3298 you really need something like this, you can easily tailor your
3299 own streams to achieve the same feature at a lower level (and
3300 use FT_Open_Face instead of FT_New_Face to create the face).
3302 See the file `include/ftsystem.h' for more details, as well as the
3303 implementations found in `config/unix' and `config/ansi'.
3306 ----------------------------------------------------------------------
3310 The Font Driver interface has been modified in order to support
3311 extensions & versioning.
3314 The list of the font drivers that are statically linked to the
3315 library at compile time is managed through a new configuration file
3316 called `config/<platform>/ftmodule.h'.
3318 This file is autogenerated when invoking `make modules'. This
3319 target will parse all sub-directories of 'src', looking for a
3320 `module.mk' rules file, used to describe the driver to the build
3323 Hence, one should call `make modules' each time a font driver is
3324 added or removed from the `src' directory.
3326 Finally, this version provides a `pseudo-driver' in `src/sfnt'.
3327 This driver doesn't support font files directly, but provides
3328 services used by all TrueType-like font drivers. Hence, its code is
3329 shared between the TrueType & OpenType font formats, and possibly
3330 more formats to come if we're lucky..
3333 ----------------------------------------------------------------------
3337 The extensions support is inspired by the one found in 1.x.
3339 Now, each font driver has its own `extension registry', which lists
3340 which extensions are available for the font faces managed by the
3343 Extension ids are now strings, rather than 4-byte tags, as this is
3344 usually more readable.
3347 - some data, associated to each face object
3348 - an interface (table of function pointers)
3350 An extension that is format-specific should simply register itself
3351 to the correct font driver. Here is some example code:
3353 // Registering an extensions
3355 FT_Error FT_Init_XXXX_Extension( FT_Library library )
3357 FT_DriverInterface* tt_driver;
3359 driver = FT_Get_Driver( library, "truetype" );
3360 if (!driver) return FT_Err_Unimplemented_Feature;
3362 return FT_Register_Extension( driver, &extension_class );
3366 // Implementing the extensions
3368 FT_Error FT_Proceed_Extension_XXX( FT_Face face )
3370 FT_XXX_Extension ext;
3371 FT_XXX_Extension_Interface ext_interface;
3373 ext = FT_Get_Extension( face, "extensionid", &ext_interface );
3374 if (!ext) return error;
3376 return ext_interface->do_it(ext);
3379 ------------------------------------------------------------------------
3381 Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by
3382 David Turner, Robert Wilhelm, and Werner Lemberg.
3384 This file is part of the FreeType project, and may only be used,
3385 modified, and distributed under the terms of the FreeType project
3386 license, LICENSE.TXT. By continuing to use, modify, or distribute this
3387 file you indicate that you have read the license and understand and
3392 version-control: never
3396 --- end of CHANGES ---