2009-11-04 00:34:20 +01:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2009 Red Hat, Inc.
|
|
|
|
* Copyright © 2009 Keith Stribley
|
2009-11-04 00:34:20 +01:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2009-11-04 00:34:20 +01:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2011-04-21 00:50:27 +02:00
|
|
|
#include "hb-private.hh"
|
2009-11-04 00:34:20 +01:00
|
|
|
|
|
|
|
#include "hb-ft.h"
|
|
|
|
|
2011-04-21 00:50:27 +02:00
|
|
|
#include "hb-font-private.hh"
|
2009-11-04 00:34:20 +01:00
|
|
|
|
|
|
|
#include FT_TRUETYPE_TABLES_H
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
HB_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
/* TODO:
|
|
|
|
*
|
|
|
|
* In general, this file does a fine job of what it's supposed to do.
|
|
|
|
* There are, however, things that need more work:
|
|
|
|
*
|
|
|
|
* - We don't handle any load_flags. That definitely has API implications. :(
|
|
|
|
* I believe hb_ft_font_create() should take load_flags input.
|
|
|
|
*
|
|
|
|
* - We don't handle / allow for emboldening / obliqueing.
|
|
|
|
*
|
|
|
|
* - In the future, we should add constructors to create fonts in font space.
|
|
|
|
*
|
|
|
|
* - I believe transforms are not correctly implemented. FreeType does not
|
|
|
|
* provide any API to get to the transform/delta set on the face. :(
|
|
|
|
*
|
|
|
|
* - Always use FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH?
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-05-11 02:41:13 +02:00
|
|
|
static hb_bool_t
|
2011-05-17 00:15:37 +02:00
|
|
|
hb_ft_get_glyph (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t unicode,
|
|
|
|
hb_codepoint_t variation_selector,
|
|
|
|
hb_codepoint_t *glyph,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
|
2009-11-04 00:34:20 +01:00
|
|
|
{
|
2011-05-11 02:41:13 +02:00
|
|
|
FT_Face ft_face = (FT_Face) font_data;
|
2009-11-04 21:48:32 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
#ifdef HAVE_FT_FACE_GETCHARVARIANTINDEX
|
|
|
|
if (unlikely (variation_selector)) {
|
|
|
|
*glyph = FT_Face_GetCharVariantIndex (ft_face, unicode, variation_selector);
|
|
|
|
if (*glyph)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*glyph = FT_Get_Char_Index (ft_face, unicode);
|
|
|
|
return *glyph != 0;
|
|
|
|
}
|
|
|
|
|
2011-05-20 00:46:15 +02:00
|
|
|
static void
|
2011-05-17 00:15:37 +02:00
|
|
|
hb_ft_get_glyph_h_advance (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
2011-05-20 00:46:15 +02:00
|
|
|
hb_position_t *advance,
|
2011-05-17 00:15:37 +02:00
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
|
|
|
FT_Face ft_face = (FT_Face) font_data;
|
|
|
|
int load_flags = FT_LOAD_DEFAULT;
|
2009-11-04 21:48:32 +01:00
|
|
|
|
2011-05-11 02:41:13 +02:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph, load_flags)))
|
2011-05-20 00:46:15 +02:00
|
|
|
return;
|
2011-05-11 02:41:13 +02:00
|
|
|
|
2011-05-20 00:46:15 +02:00
|
|
|
*advance = ft_face->glyph->metrics.horiAdvance;
|
2011-05-17 00:15:37 +02:00
|
|
|
}
|
2011-05-11 02:41:13 +02:00
|
|
|
|
2011-05-20 00:46:15 +02:00
|
|
|
static void
|
2011-05-17 00:15:37 +02:00
|
|
|
hb_ft_get_glyph_v_advance (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
2011-05-20 00:46:15 +02:00
|
|
|
hb_position_t *advance,
|
2011-05-17 00:15:37 +02:00
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
|
|
|
FT_Face ft_face = (FT_Face) font_data;
|
|
|
|
int load_flags = FT_LOAD_DEFAULT;
|
2011-05-11 02:41:13 +02:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph, load_flags)))
|
2011-05-20 00:46:15 +02:00
|
|
|
return;
|
2011-05-11 02:41:13 +02:00
|
|
|
|
2011-05-19 19:08:00 +02:00
|
|
|
/* Note: FreeType's vertical metrics grows downward while other FreeType coordinates
|
|
|
|
* have a Y growing upward. Hence the extra negation. */
|
2011-05-20 00:46:15 +02:00
|
|
|
*advance = -ft_face->glyph->metrics.vertAdvance;
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
|
|
|
|
2011-05-17 23:55:03 +02:00
|
|
|
static hb_bool_t
|
|
|
|
hb_ft_get_glyph_h_origin (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data HB_UNUSED,
|
|
|
|
hb_codepoint_t glyph HB_UNUSED,
|
2011-05-18 05:27:22 +02:00
|
|
|
hb_position_t *x HB_UNUSED,
|
|
|
|
hb_position_t *y HB_UNUSED,
|
2011-05-17 23:55:03 +02:00
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
|
|
|
/* We always work in the horizontal coordinates. */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
static hb_bool_t
|
|
|
|
hb_ft_get_glyph_v_origin (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
2011-05-18 05:27:22 +02:00
|
|
|
hb_position_t *x,
|
|
|
|
hb_position_t *y,
|
2011-05-17 00:15:37 +02:00
|
|
|
void *user_data HB_UNUSED)
|
2010-10-27 07:13:56 +02:00
|
|
|
{
|
2011-05-11 02:41:13 +02:00
|
|
|
FT_Face ft_face = (FT_Face) font_data;
|
2010-10-27 07:13:56 +02:00
|
|
|
int load_flags = FT_LOAD_DEFAULT;
|
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph, load_flags)))
|
|
|
|
return FALSE;
|
2010-10-27 07:13:56 +02:00
|
|
|
|
2011-05-19 19:08:00 +02:00
|
|
|
/* Note: FreeType's vertical metrics grows downward while other FreeType coordinates
|
|
|
|
* have a Y growing upward. Hence the extra negation. */
|
|
|
|
*x = ft_face->glyph->metrics.horiBearingX - ft_face->glyph->metrics.vertBearingX;
|
|
|
|
*y = ft_face->glyph->metrics.horiBearingY - (-ft_face->glyph->metrics.vertBearingY);
|
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
return TRUE;
|
2010-10-27 07:13:56 +02:00
|
|
|
}
|
|
|
|
|
2011-05-20 00:46:15 +02:00
|
|
|
static void
|
2011-05-17 23:55:03 +02:00
|
|
|
hb_ft_get_glyph_h_kerning (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t left_glyph,
|
|
|
|
hb_codepoint_t right_glyph,
|
2011-05-20 00:46:15 +02:00
|
|
|
hb_position_t *kerning,
|
2011-05-17 23:55:03 +02:00
|
|
|
void *user_data HB_UNUSED)
|
2011-05-17 00:15:37 +02:00
|
|
|
{
|
|
|
|
FT_Face ft_face = (FT_Face) font_data;
|
2011-05-20 00:46:15 +02:00
|
|
|
FT_Vector kerningv;
|
2011-05-17 00:15:37 +02:00
|
|
|
|
2011-05-20 00:46:15 +02:00
|
|
|
if (FT_Get_Kerning (ft_face, left_glyph, right_glyph, FT_KERNING_DEFAULT, &kerningv))
|
|
|
|
return;
|
2011-05-17 00:15:37 +02:00
|
|
|
|
2011-05-20 00:46:15 +02:00
|
|
|
*kerning = kerningv.x;
|
2011-05-17 00:15:37 +02:00
|
|
|
}
|
|
|
|
|
2011-05-20 00:46:15 +02:00
|
|
|
static void
|
2011-05-17 23:55:03 +02:00
|
|
|
hb_ft_get_glyph_v_kerning (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data HB_UNUSED,
|
|
|
|
hb_codepoint_t top_glyph HB_UNUSED,
|
|
|
|
hb_codepoint_t bottom_glyph HB_UNUSED,
|
2011-05-20 00:46:15 +02:00
|
|
|
hb_position_t *kerning HB_UNUSED,
|
2011-05-17 23:55:03 +02:00
|
|
|
void *user_data HB_UNUSED)
|
2011-05-17 00:15:37 +02:00
|
|
|
{
|
|
|
|
/* FreeType API doesn't support vertical kerning */
|
2011-05-20 00:46:15 +02:00
|
|
|
return;
|
2011-05-17 00:15:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static hb_bool_t
|
2010-10-27 07:13:56 +02:00
|
|
|
hb_ft_get_glyph_extents (hb_font_t *font HB_UNUSED,
|
2011-05-12 05:25:28 +02:00
|
|
|
void *font_data,
|
2010-10-27 07:13:56 +02:00
|
|
|
hb_codepoint_t glyph,
|
2011-05-11 02:41:13 +02:00
|
|
|
hb_glyph_extents_t *extents,
|
2011-05-12 05:25:28 +02:00
|
|
|
void *user_data HB_UNUSED)
|
2010-10-27 07:13:56 +02:00
|
|
|
{
|
2011-05-11 02:41:13 +02:00
|
|
|
FT_Face ft_face = (FT_Face) font_data;
|
2010-10-27 07:13:56 +02:00
|
|
|
int load_flags = FT_LOAD_DEFAULT;
|
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph, load_flags)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
extents->x_bearing = ft_face->glyph->metrics.horiBearingX;
|
|
|
|
extents->y_bearing = ft_face->glyph->metrics.horiBearingY;
|
|
|
|
extents->width = ft_face->glyph->metrics.width;
|
|
|
|
extents->height = ft_face->glyph->metrics.height;
|
|
|
|
return TRUE;
|
2010-10-27 07:13:56 +02:00
|
|
|
}
|
|
|
|
|
2011-05-12 21:14:13 +02:00
|
|
|
static hb_bool_t
|
2011-05-17 23:55:03 +02:00
|
|
|
hb_ft_get_glyph_contour_point (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
|
|
|
unsigned int point_index,
|
|
|
|
hb_position_t *x,
|
|
|
|
hb_position_t *y,
|
|
|
|
void *user_data HB_UNUSED)
|
2011-05-11 02:41:13 +02:00
|
|
|
{
|
|
|
|
FT_Face ft_face = (FT_Face) font_data;
|
2011-05-17 00:15:37 +02:00
|
|
|
int load_flags = FT_LOAD_DEFAULT;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph, load_flags)))
|
|
|
|
return FALSE;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
if (unlikely (ft_face->glyph->format != FT_GLYPH_FORMAT_OUTLINE))
|
|
|
|
return FALSE;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
if (unlikely (point_index >= (unsigned int) ft_face->glyph->outline.n_points))
|
|
|
|
return FALSE;
|
2009-11-04 21:48:32 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
*x = ft_face->glyph->outline.points[point_index].x;
|
|
|
|
*y = ft_face->glyph->outline.points[point_index].y;
|
2009-11-04 21:48:32 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
return TRUE;
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static hb_font_funcs_t ft_ffuncs = {
|
2011-04-22 00:24:02 +02:00
|
|
|
HB_OBJECT_HEADER_STATIC,
|
|
|
|
|
2009-11-04 00:34:20 +01:00
|
|
|
TRUE, /* immutable */
|
2011-05-11 02:41:13 +02:00
|
|
|
|
2010-05-24 19:02:32 +02:00
|
|
|
{
|
2011-05-11 02:41:13 +02:00
|
|
|
hb_ft_get_glyph,
|
2011-05-17 00:15:37 +02:00
|
|
|
hb_ft_get_glyph_h_advance,
|
|
|
|
hb_ft_get_glyph_v_advance,
|
2011-05-17 23:55:03 +02:00
|
|
|
hb_ft_get_glyph_h_origin,
|
2011-05-17 00:15:37 +02:00
|
|
|
hb_ft_get_glyph_v_origin,
|
2011-05-17 23:55:03 +02:00
|
|
|
hb_ft_get_glyph_h_kerning,
|
|
|
|
hb_ft_get_glyph_v_kerning,
|
2011-05-17 00:15:37 +02:00
|
|
|
hb_ft_get_glyph_extents,
|
2011-05-17 23:55:03 +02:00
|
|
|
hb_ft_get_glyph_contour_point,
|
2010-05-24 19:02:32 +02:00
|
|
|
}
|
2009-11-04 00:34:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
hb_font_funcs_t *
|
|
|
|
hb_ft_get_font_funcs (void)
|
|
|
|
{
|
|
|
|
return &ft_ffuncs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static hb_blob_t *
|
2011-05-12 05:31:15 +02:00
|
|
|
get_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
|
2009-11-04 00:34:20 +01:00
|
|
|
{
|
|
|
|
FT_Face ft_face = (FT_Face) user_data;
|
|
|
|
FT_Byte *buffer;
|
|
|
|
FT_ULong length = 0;
|
|
|
|
FT_Error error;
|
|
|
|
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (tag == HB_TAG_NONE))
|
2010-05-20 17:23:27 +02:00
|
|
|
return NULL;
|
2010-04-29 20:15:32 +02:00
|
|
|
|
2009-11-04 00:34:20 +01:00
|
|
|
error = FT_Load_Sfnt_Table (ft_face, tag, 0, NULL, &length);
|
|
|
|
if (error)
|
2010-05-20 17:23:27 +02:00
|
|
|
return NULL;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2010-05-13 00:23:21 +02:00
|
|
|
buffer = (FT_Byte *) malloc (length);
|
2009-11-04 00:34:20 +01:00
|
|
|
if (buffer == NULL)
|
2010-04-24 01:59:53 +02:00
|
|
|
return NULL;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
|
|
|
error = FT_Load_Sfnt_Table (ft_face, tag, 0, buffer, &length);
|
|
|
|
if (error)
|
2010-05-20 17:23:27 +02:00
|
|
|
return NULL;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
|
|
|
return hb_blob_create ((const char *) buffer, length,
|
|
|
|
HB_MEMORY_MODE_WRITABLE,
|
2011-04-20 09:03:32 +02:00
|
|
|
buffer, free);
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
hb_face_t *
|
|
|
|
hb_ft_face_create (FT_Face ft_face,
|
|
|
|
hb_destroy_func_t destroy)
|
|
|
|
{
|
|
|
|
hb_face_t *face;
|
|
|
|
|
2010-03-02 04:33:45 +01:00
|
|
|
if (ft_face->stream->read == NULL) {
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_blob_t *blob;
|
|
|
|
|
|
|
|
blob = hb_blob_create ((const char *) ft_face->stream->base,
|
|
|
|
(unsigned int) ft_face->stream->size,
|
2011-05-17 00:15:37 +02:00
|
|
|
/* TODO: We assume that it's mmap()'ed, but FreeType code
|
|
|
|
* suggests that there are cases we reach here but font is
|
|
|
|
* not mmapped. For example, when mmap() fails. No idea
|
|
|
|
* how to deal with it better here. */
|
2009-11-04 00:34:20 +01:00
|
|
|
HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE,
|
2011-04-20 09:03:32 +02:00
|
|
|
ft_face, destroy);
|
2011-05-12 04:49:29 +02:00
|
|
|
face = hb_face_create (blob, ft_face->face_index);
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_blob_destroy (blob);
|
|
|
|
} else {
|
2011-04-20 09:03:32 +02:00
|
|
|
face = hb_face_create_for_tables (get_table, ft_face, destroy);
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return face;
|
|
|
|
}
|
|
|
|
|
2009-11-06 02:17:53 +01:00
|
|
|
static void
|
|
|
|
hb_ft_face_finalize (FT_Face ft_face)
|
|
|
|
{
|
2010-05-13 00:23:21 +02:00
|
|
|
hb_face_destroy ((hb_face_t *) ft_face->generic.data);
|
2009-11-06 02:17:53 +01:00
|
|
|
}
|
|
|
|
|
2009-11-05 23:39:16 +01:00
|
|
|
hb_face_t *
|
|
|
|
hb_ft_face_create_cached (FT_Face ft_face)
|
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!ft_face->generic.data || ft_face->generic.finalizer != (FT_Generic_Finalizer) hb_ft_face_finalize))
|
2009-11-05 23:58:41 +01:00
|
|
|
{
|
|
|
|
if (ft_face->generic.finalizer)
|
2009-11-06 21:19:22 +01:00
|
|
|
ft_face->generic.finalizer (ft_face);
|
2009-11-05 23:39:16 +01:00
|
|
|
|
2009-11-05 23:58:41 +01:00
|
|
|
ft_face->generic.data = hb_ft_face_create (ft_face, NULL);
|
2009-11-06 02:17:53 +01:00
|
|
|
ft_face->generic.finalizer = (FT_Generic_Finalizer) hb_ft_face_finalize;
|
2009-11-05 23:58:41 +01:00
|
|
|
}
|
2009-11-05 23:39:16 +01:00
|
|
|
|
2010-05-13 00:23:21 +02:00
|
|
|
return hb_face_reference ((hb_face_t *) ft_face->generic.data);
|
2009-11-05 23:39:16 +01:00
|
|
|
}
|
|
|
|
|
2009-11-04 00:34:20 +01:00
|
|
|
|
|
|
|
hb_font_t *
|
|
|
|
hb_ft_font_create (FT_Face ft_face,
|
|
|
|
hb_destroy_func_t destroy)
|
|
|
|
{
|
|
|
|
hb_font_t *font;
|
2011-05-03 07:03:53 +02:00
|
|
|
hb_face_t *face;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2011-05-03 07:03:53 +02:00
|
|
|
face = hb_ft_face_create (ft_face, destroy);
|
|
|
|
font = hb_font_create (face);
|
|
|
|
hb_face_destroy (face);
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_font_set_funcs (font,
|
|
|
|
hb_ft_get_font_funcs (),
|
2011-05-03 07:03:53 +02:00
|
|
|
ft_face, NULL);
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_font_set_scale (font,
|
2010-05-19 21:45:06 +02:00
|
|
|
((uint64_t) ft_face->size->metrics.x_scale * (uint64_t) ft_face->units_per_EM) >> 16,
|
|
|
|
((uint64_t) ft_face->size->metrics.y_scale * (uint64_t) ft_face->units_per_EM) >> 16);
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_font_set_ppem (font,
|
|
|
|
ft_face->size->metrics.x_ppem,
|
|
|
|
ft_face->size->metrics.y_ppem);
|
|
|
|
|
|
|
|
return font;
|
|
|
|
}
|
2010-07-23 21:11:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
HB_END_DECLS
|