1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*-
2 // vim:ts=8:sw=8:noet:ai:
4 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
6 * This file is part of libass.
8 * libass is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * libass is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with libass; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include FT_FREETYPE_H
28 #include FT_SYNTHESIS_H
30 #include FT_TRUETYPE_TABLES_H
33 #include "ass_library.h"
35 #include "ass_bitmap.h"
36 #include "ass_cache.h"
37 #include "ass_fontconfig.h"
38 #include "ass_utils.h"
42 * Select Microfost Unicode CharMap, if the font has one.
43 * Otherwise, let FreeType decide.
45 static void charmap_magic(FT_Face face
)
48 for (i
= 0; i
< face
->num_charmaps
; ++i
) {
49 FT_CharMap cmap
= face
->charmaps
[i
];
50 unsigned pid
= cmap
->platform_id
;
51 unsigned eid
= cmap
->encoding_id
;
52 if (pid
== 3 /*microsoft*/ && (eid
== 1 /*unicode bmp*/ || eid
== 10 /*full unicode*/)) {
53 FT_Set_Charmap(face
, cmap
);
59 if (face
->num_charmaps
== 0) {
60 mp_msg(MSGT_ASS
, MSGL_WARN
, MSGTR_LIBASS_NoCharmaps
);
63 mp_msg(MSGT_ASS
, MSGL_WARN
, MSGTR_LIBASS_NoCharmapAutodetected
);
64 FT_Set_Charmap(face
, face
->charmaps
[0]);
69 static void update_transform(ass_font_t
* font
)
73 m
.xx
= double_to_d16(font
->scale_x
);
74 m
.yy
= double_to_d16(font
->scale_y
);
76 for (i
= 0; i
< font
->n_faces
; ++i
)
77 FT_Set_Transform(font
->faces
[i
], &m
, &font
->v
);
81 * \brief find a memory font by name
83 static int find_font(ass_library_t
* library
, char* name
)
86 for (i
= 0; i
< library
->num_fontdata
; ++i
)
87 if (strcasecmp(name
, library
->fontdata
[i
].name
) == 0)
92 static void face_set_size(FT_Face face
, double size
);
94 static void buggy_font_workaround(FT_Face face
)
96 // Some fonts have zero Ascender/Descender fields in 'hhea' table.
97 // In this case, get the information from 'os2' table or, as
98 // a last resort, from face.bbox.
99 if (face
->ascender
+ face
->descender
== 0 || face
->height
== 0) {
100 TT_OS2
*os2
= FT_Get_Sfnt_Table(face
, ft_sfnt_os2
);
102 face
->ascender
= os2
->sTypoAscender
;
103 face
->descender
= os2
->sTypoDescender
;
104 face
->height
= face
->ascender
- face
->descender
;
106 face
->ascender
= face
->bbox
.yMax
;
107 face
->descender
= face
->bbox
.yMin
;
108 face
->height
= face
->ascender
- face
->descender
;
114 * \brief Select a face with the given charcode and add it to ass_font_t
115 * \return index of the new face in font->faces, -1 if failed
117 static int add_face(void* fc_priv
, ass_font_t
* font
, uint32_t ch
)
125 if (font
->n_faces
== ASS_FONT_MAX_FACES
)
128 path
= fontconfig_select(fc_priv
, font
->desc
.family
, font
->desc
.bold
,
129 font
->desc
.italic
, &index
, ch
);
131 mem_idx
= find_font(font
->library
, path
);
133 error
= FT_New_Memory_Face(font
->ftlibrary
, (unsigned char*)font
->library
->fontdata
[mem_idx
].data
,
134 font
->library
->fontdata
[mem_idx
].size
, 0, &face
);
136 mp_msg(MSGT_ASS
, MSGL_WARN
, MSGTR_LIBASS_ErrorOpeningMemoryFont
, path
);
140 error
= FT_New_Face(font
->ftlibrary
, path
, index
, &face
);
142 mp_msg(MSGT_ASS
, MSGL_WARN
, MSGTR_LIBASS_ErrorOpeningFont
, path
, index
);
147 buggy_font_workaround(face
);
149 font
->faces
[font
->n_faces
++] = face
;
150 update_transform(font
);
151 face_set_size(face
, font
->size
);
152 return font
->n_faces
- 1;
156 * \brief Create a new ass_font_t according to "desc" argument
158 ass_font_t
* ass_font_new(ass_library_t
* library
, FT_Library ftlibrary
, void* fc_priv
, ass_font_desc_t
* desc
)
164 fontp
= ass_font_cache_find(desc
);
168 font
.library
= library
;
169 font
.ftlibrary
= ftlibrary
;
171 font
.desc
.family
= strdup(desc
->family
);
172 font
.desc
.bold
= desc
->bold
;
173 font
.desc
.italic
= desc
->italic
;
175 font
.scale_x
= font
.scale_y
= 1.;
176 font
.v
.x
= font
.v
.y
= 0;
179 error
= add_face(fc_priv
, &font
, 0);
181 free(font
.desc
.family
);
184 return ass_font_cache_add(&font
);
188 * \brief Set font transformation matrix and shift vector
190 void ass_font_set_transform(ass_font_t
* font
, double scale_x
, double scale_y
, FT_Vector
* v
)
192 font
->scale_x
= scale_x
;
193 font
->scale_y
= scale_y
;
196 update_transform(font
);
199 static void face_set_size(FT_Face face
, double size
)
201 #if (FREETYPE_MAJOR > 2) || ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR > 1))
202 TT_HoriHeader
*hori
= FT_Get_Sfnt_Table(face
, ft_sfnt_hhea
);
203 TT_OS2
*os2
= FT_Get_Sfnt_Table(face
, ft_sfnt_os2
);
205 FT_Size_RequestRec rq
;
206 FT_Size_Metrics
*m
= &face
->size
->metrics
;
207 // VSFilter uses metrics from TrueType OS/2 table
208 // The idea was borrowed from asa (http://asa.diac24.net)
210 int hori_height
= hori
->Ascender
- hori
->Descender
;
211 int os2_height
= os2
->usWinAscent
+ os2
->usWinDescent
;
212 if (hori_height
&& os2_height
)
213 mscale
= (double)hori_height
/ os2_height
;
215 memset(&rq
, 0, sizeof(rq
));
216 rq
.type
= FT_SIZE_REQUEST_TYPE_REAL_DIM
;
218 rq
.height
= double_to_d6(size
* mscale
);
219 rq
.horiResolution
= rq
.vertResolution
= 0;
220 FT_Request_Size(face
, &rq
);
221 m
->ascender
/= mscale
;
222 m
->descender
/= mscale
;
225 FT_Set_Char_Size(face
, 0, double_to_d6(size
), 0, 0);
230 * \brief Set font size
232 void ass_font_set_size(ass_font_t
* font
, double size
)
235 if (font
->size
!= size
) {
237 for (i
= 0; i
< font
->n_faces
; ++i
)
238 face_set_size(font
->faces
[i
], size
);
243 * \brief Get maximal font ascender and descender.
244 * \param ch character code
245 * The values are extracted from the font face that provides glyphs for the given character
247 void ass_font_get_asc_desc(ass_font_t
* font
, uint32_t ch
, int* asc
, int* desc
)
250 for (i
= 0; i
< font
->n_faces
; ++i
) {
251 FT_Face face
= font
->faces
[i
];
252 if (FT_Get_Char_Index(face
, ch
)) {
253 *asc
= face
->size
->metrics
.ascender
;
254 *desc
= - face
->size
->metrics
.descender
;
264 * \param ch character code
266 FT_Glyph
ass_font_get_glyph(void* fontconfig_priv
, ass_font_t
* font
, uint32_t ch
, ass_hinting_t hinting
)
277 if (font
->n_faces
== 0)
280 for (i
= 0; i
< font
->n_faces
; ++i
) {
281 face
= font
->faces
[i
];
282 index
= FT_Get_Char_Index(face
, ch
);
287 #ifdef CONFIG_FONTCONFIG
290 mp_msg(MSGT_ASS
, MSGL_INFO
, MSGTR_LIBASS_GlyphNotFoundReselectingFont
,
291 ch
, font
->desc
.family
, font
->desc
.bold
, font
->desc
.italic
);
292 face_idx
= add_face(fontconfig_priv
, font
, ch
);
294 face
= font
->faces
[face_idx
];
295 index
= FT_Get_Char_Index(face
, ch
);
297 mp_msg(MSGT_ASS
, MSGL_ERR
, MSGTR_LIBASS_GlyphNotFound
,
298 ch
, font
->desc
.family
, font
->desc
.bold
, font
->desc
.italic
);
305 case ASS_HINTING_NONE
: flags
= FT_LOAD_NO_HINTING
; break;
306 case ASS_HINTING_LIGHT
: flags
= FT_LOAD_FORCE_AUTOHINT
| FT_LOAD_TARGET_LIGHT
; break;
307 case ASS_HINTING_NORMAL
: flags
= FT_LOAD_FORCE_AUTOHINT
; break;
308 case ASS_HINTING_NATIVE
: flags
= 0; break;
311 error
= FT_Load_Glyph(face
, index
, FT_LOAD_NO_BITMAP
| flags
);
313 mp_msg(MSGT_ASS
, MSGL_WARN
, MSGTR_LIBASS_ErrorLoadingGlyph
);
317 #if (FREETYPE_MAJOR > 2) || \
318 ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR >= 2)) || \
319 ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR == 1) && (FREETYPE_PATCH >= 10))
320 // FreeType >= 2.1.10 required
321 if (!(face
->style_flags
& FT_STYLE_FLAG_ITALIC
) &&
322 (font
->desc
.italic
> 55)) {
323 FT_GlyphSlot_Oblique(face
->glyph
);
326 error
= FT_Get_Glyph(face
->glyph
, &glyph
);
328 mp_msg(MSGT_ASS
, MSGL_WARN
, MSGTR_LIBASS_ErrorLoadingGlyph
);
336 * \brief Get kerning for the pair of glyphs.
338 FT_Vector
ass_font_get_kerning(ass_font_t
* font
, uint32_t c1
, uint32_t c2
)
340 FT_Vector v
= {0, 0};
343 for (i
= 0; i
< font
->n_faces
; ++i
) {
344 FT_Face face
= font
->faces
[i
];
345 int i1
= FT_Get_Char_Index(face
, c1
);
346 int i2
= FT_Get_Char_Index(face
, c2
);
348 if (FT_HAS_KERNING(face
))
349 FT_Get_Kerning(face
, i1
, i2
, FT_KERNING_DEFAULT
, &v
);
352 if (i1
|| i2
) // these glyphs are from different font faces, no kerning information
359 * \brief Deallocate ass_font_t
361 void ass_font_free(ass_font_t
* font
)
364 for (i
= 0; i
< font
->n_faces
; ++i
)
365 if (font
->faces
[i
]) FT_Done_Face(font
->faces
[i
]);
366 if (font
->desc
.family
) free(font
->desc
.family
);