harfbuzz/src/hb-ft.c

241 lines
6.3 KiB
C
Raw Normal View History

2009-11-04 00:34:20 +01:00
/*
* Copyright (C) 2009 Red Hat, Inc.
* Copyright (C) 2009 Keith Stribley <devel@thanlwinsoft.org>
*
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
*/
#include "hb-private.h"
#include "hb-ft.h"
#include "hb-font-private.h"
#include FT_TRUETYPE_TABLES_H
2009-11-04 21:48:32 +01:00
static hb_codepoint_t
2010-04-29 19:56:44 +02:00
hb_ft_get_glyph (hb_font_t *font HB_UNUSED,
hb_face_t *face HB_UNUSED,
2010-04-23 20:39:10 +02:00
const void *user_data,
hb_codepoint_t unicode,
hb_codepoint_t variation_selector)
2009-11-04 00:34:20 +01:00
{
2009-11-04 21:48:32 +01:00
FT_Face ft_face = (FT_Face) user_data;
2009-12-20 23:05:02 +01:00
#ifdef HAVE_FT_FACE_GETCHARVARIANTINDEX
2009-11-04 21:48:32 +01:00
if (HB_UNLIKELY (variation_selector)) {
hb_codepoint_t glyph = FT_Face_GetCharVariantIndex (ft_face, unicode, variation_selector);
if (glyph)
return glyph;
}
2009-12-20 23:05:02 +01:00
#endif
2009-11-04 21:48:32 +01:00
return FT_Get_Char_Index (ft_face, unicode);
2009-11-04 00:34:20 +01:00
}
2009-11-04 21:48:32 +01:00
static hb_bool_t
2010-04-29 19:56:44 +02:00
hb_ft_get_contour_point (hb_font_t *font HB_UNUSED,
hb_face_t *face HB_UNUSED,
2010-04-23 20:39:10 +02:00
const void *user_data,
2009-11-04 21:48:32 +01:00
unsigned int point_index,
2010-04-23 20:39:10 +02:00
hb_codepoint_t glyph,
hb_position_t *x,
hb_position_t *y)
2009-11-04 00:34:20 +01:00
{
2009-11-04 21:48:32 +01:00
FT_Face ft_face = (FT_Face) user_data;
int load_flags = FT_LOAD_DEFAULT;
2009-11-04 00:34:20 +01:00
2009-11-04 21:48:32 +01:00
/* TODO: load_flags, embolden, etc */
2009-11-04 00:34:20 +01:00
2009-11-04 21:48:32 +01:00
if (HB_UNLIKELY (FT_Load_Glyph (ft_face, glyph, load_flags)))
return FALSE;
2009-11-04 00:34:20 +01:00
2009-11-04 21:48:32 +01:00
if (HB_UNLIKELY (ft_face->glyph->format != FT_GLYPH_FORMAT_OUTLINE))
return FALSE;
2009-11-04 00:34:20 +01:00
2009-11-04 21:48:32 +01:00
if (HB_UNLIKELY (point_index >= (unsigned int) ft_face->glyph->outline.n_points))
return FALSE;
2009-11-04 00:34:20 +01:00
2009-11-04 21:48:32 +01:00
*x = ft_face->glyph->outline.points[point_index].x;
*y = ft_face->glyph->outline.points[point_index].y;
2009-11-04 00:34:20 +01:00
2009-11-04 21:48:32 +01:00
return TRUE;
2009-11-04 00:34:20 +01:00
}
2009-11-04 21:48:32 +01:00
static void
2010-04-29 19:56:44 +02:00
hb_ft_get_glyph_metrics (hb_font_t *font HB_UNUSED,
hb_face_t *face HB_UNUSED,
2010-04-23 20:39:10 +02:00
const void *user_data,
hb_codepoint_t glyph,
hb_glyph_metrics_t *metrics)
2009-11-04 00:34:20 +01:00
{
2009-11-04 21:48:32 +01:00
FT_Face ft_face = (FT_Face) user_data;
int load_flags = FT_LOAD_DEFAULT;
/* TODO: load_flags, embolden, etc */
metrics->x_advance = metrics->y_advance = 0;
metrics->x_offset = metrics->y_offset = 0;
2009-11-04 21:48:32 +01:00
metrics->width = metrics->height = 0;
if (HB_LIKELY (!FT_Load_Glyph (ft_face, glyph, load_flags)))
{
/* TODO: A few negations should be in order here, not sure. */
metrics->x_advance = ft_face->glyph->advance.x;
metrics->y_advance = ft_face->glyph->advance.y;
metrics->x_offset = ft_face->glyph->metrics.horiBearingX;
metrics->y_offset = ft_face->glyph->metrics.horiBearingY;
metrics->width = ft_face->glyph->metrics.width;
metrics->height = ft_face->glyph->metrics.height;
2009-11-04 21:48:32 +01:00
}
2009-11-04 00:34:20 +01:00
}
2009-11-04 21:48:32 +01:00
static hb_position_t
2010-04-29 19:56:44 +02:00
hb_ft_get_kerning (hb_font_t *font HB_UNUSED,
hb_face_t *face HB_UNUSED,
2010-04-23 20:39:10 +02:00
const void *user_data,
hb_codepoint_t first_glyph,
hb_codepoint_t second_glyph)
2009-11-04 00:34:20 +01:00
{
2009-11-04 21:48:32 +01:00
FT_Face ft_face = (FT_Face) user_data;
FT_Vector kerning;
/* TODO: Kern type? */
if (FT_Get_Kerning (ft_face, first_glyph, second_glyph, FT_KERNING_DEFAULT, &kerning))
return 0;
return kerning.x;
2009-11-04 00:34:20 +01:00
}
static hb_font_funcs_t ft_ffuncs = {
HB_REFERENCE_COUNT_INVALID, /* ref_count */
TRUE, /* immutable */
hb_ft_get_glyph,
hb_ft_get_contour_point,
hb_ft_get_glyph_metrics,
hb_ft_get_kerning
};
hb_font_funcs_t *
hb_ft_get_font_funcs (void)
{
return &ft_ffuncs;
}
static hb_blob_t *
_get_table (hb_tag_t tag, void *user_data)
{
FT_Face ft_face = (FT_Face) user_data;
FT_Byte *buffer;
FT_ULong length = 0;
FT_Error error;
if (HB_UNLIKELY (tag == HB_TAG_NONE))
return hb_blob_create_empty ();
2009-11-04 00:34:20 +01:00
error = FT_Load_Sfnt_Table (ft_face, tag, 0, NULL, &length);
if (error)
return hb_blob_create_empty ();
2009-11-04 21:48:32 +01:00
/* TODO Use FT_Memory? */
2009-11-04 00:34:20 +01:00
buffer = malloc (length);
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)
return hb_blob_create_empty ();
return hb_blob_create ((const char *) buffer, length,
HB_MEMORY_MODE_WRITABLE,
free, buffer);
}
hb_face_t *
hb_ft_face_create (FT_Face ft_face,
hb_destroy_func_t destroy)
{
hb_face_t *face;
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,
/* TODO: Check FT_FACE_FLAG_EXTERNAL_STREAM? */
2009-11-04 00:34:20 +01:00
HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE,
destroy, ft_face);
face = hb_face_create_for_data (blob, ft_face->face_index);
hb_blob_destroy (blob);
} else {
face = hb_face_create_for_tables (_get_table, destroy, ft_face);
}
return face;
}
2009-11-06 02:17:53 +01:00
static void
hb_ft_face_finalize (FT_Face ft_face)
{
hb_face_destroy (ft_face->generic.data);
}
2009-11-05 23:39:16 +01:00
hb_face_t *
hb_ft_face_create_cached (FT_Face ft_face)
{
2009-11-06 02:17:53 +01:00
if (HB_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
2009-11-05 23:58:41 +01:00
return hb_face_reference (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;
font = hb_font_create ();
hb_font_set_funcs (font,
hb_ft_get_font_funcs (),
destroy, ft_face);
hb_font_set_scale (font,
ft_face->size->metrics.x_scale,
ft_face->size->metrics.y_scale);
hb_font_set_ppem (font,
ft_face->size->metrics.x_ppem,
ft_face->size->metrics.y_ppem);
return font;
}