2 * Copyright (C) 2009 Red Hat, Inc.
3 * Copyright (C) 2009 Keith Stribley <devel@thanlwinsoft.org>
5 * This is part of HarfBuzz, a text shaping library.
7 * Permission is hereby granted, without written agreement and without
8 * license or royalty fees, to use, copy, modify, and distribute this
9 * software and its documentation for any purpose, provided that the
10 * above copyright notice and the following two paragraphs appear in
11 * all copies of this software.
13 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
14 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
15 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
16 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
19 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
20 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
21 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
22 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
23 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
25 * Red Hat Author(s): Behdad Esfahbod
28 #include "hb-private.h"
32 #include "hb-font-private.h"
34 #include FT_TRUETYPE_TABLES_H
37 hb_ft_get_glyph (hb_font_t *font HB_UNUSED,
38 hb_face_t *face HB_UNUSED,
39 const void *user_data,
40 hb_codepoint_t unicode,
41 hb_codepoint_t variation_selector)
43 FT_Face ft_face = (FT_Face) user_data;
45 #ifdef HAVE_FT_FACE_GETCHARVARIANTINDEX
46 if (unlikely (variation_selector)) {
47 hb_codepoint_t glyph = FT_Face_GetCharVariantIndex (ft_face, unicode, variation_selector);
53 return FT_Get_Char_Index (ft_face, unicode);
57 hb_ft_get_contour_point (hb_font_t *font HB_UNUSED,
58 hb_face_t *face HB_UNUSED,
59 const void *user_data,
60 unsigned int point_index,
65 FT_Face ft_face = (FT_Face) user_data;
66 int load_flags = FT_LOAD_DEFAULT;
68 /* TODO: load_flags, embolden, etc */
70 if (unlikely (FT_Load_Glyph (ft_face, glyph, load_flags)))
73 if (unlikely (ft_face->glyph->format != FT_GLYPH_FORMAT_OUTLINE))
76 if (unlikely (point_index >= (unsigned int) ft_face->glyph->outline.n_points))
79 *x = ft_face->glyph->outline.points[point_index].x;
80 *y = ft_face->glyph->outline.points[point_index].y;
86 hb_ft_get_glyph_metrics (hb_font_t *font HB_UNUSED,
87 hb_face_t *face HB_UNUSED,
88 const void *user_data,
90 hb_glyph_metrics_t *metrics)
92 FT_Face ft_face = (FT_Face) user_data;
93 int load_flags = FT_LOAD_DEFAULT;
95 /* TODO: load_flags, embolden, etc */
97 metrics->x_advance = metrics->y_advance = 0;
98 metrics->x_offset = metrics->y_offset = 0;
99 metrics->width = metrics->height = 0;
100 if (likely (!FT_Load_Glyph (ft_face, glyph, load_flags)))
102 /* TODO: A few negations should be in order here, not sure. */
103 metrics->x_advance = ft_face->glyph->advance.x;
104 metrics->y_advance = ft_face->glyph->advance.y;
105 metrics->x_offset = ft_face->glyph->metrics.horiBearingX;
106 metrics->y_offset = ft_face->glyph->metrics.horiBearingY;
107 metrics->width = ft_face->glyph->metrics.width;
108 metrics->height = ft_face->glyph->metrics.height;
113 hb_ft_get_kerning (hb_font_t *font HB_UNUSED,
114 hb_face_t *face HB_UNUSED,
115 const void *user_data,
116 hb_codepoint_t first_glyph,
117 hb_codepoint_t second_glyph)
119 FT_Face ft_face = (FT_Face) user_data;
122 /* TODO: Kern type? */
123 if (FT_Get_Kerning (ft_face, first_glyph, second_glyph, FT_KERNING_DEFAULT, &kerning))
129 static hb_font_funcs_t ft_ffuncs = {
130 HB_REFERENCE_COUNT_INVALID, /* ref_count */
132 TRUE, /* immutable */
135 hb_ft_get_contour_point,
136 hb_ft_get_glyph_metrics,
141 hb_ft_get_font_funcs (void)
148 _get_table (hb_tag_t tag, void *user_data)
150 FT_Face ft_face = (FT_Face) user_data;
155 if (unlikely (tag == HB_TAG_NONE))
156 return hb_blob_create_empty ();
158 error = FT_Load_Sfnt_Table (ft_face, tag, 0, NULL, &length);
160 return hb_blob_create_empty ();
162 /* TODO Use FT_Memory? */
163 buffer = malloc (length);
167 error = FT_Load_Sfnt_Table (ft_face, tag, 0, buffer, &length);
169 return hb_blob_create_empty ();
171 return hb_blob_create ((const char *) buffer, length,
172 HB_MEMORY_MODE_WRITABLE,
178 hb_ft_face_create (FT_Face ft_face,
179 hb_destroy_func_t destroy)
183 if (ft_face->stream->read == NULL) {
186 blob = hb_blob_create ((const char *) ft_face->stream->base,
187 (unsigned int) ft_face->stream->size,
188 /* TODO: Check FT_FACE_FLAG_EXTERNAL_STREAM? */
189 HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE,
191 face = hb_face_create_for_data (blob, ft_face->face_index);
192 hb_blob_destroy (blob);
194 face = hb_face_create_for_tables (_get_table, destroy, ft_face);
201 hb_ft_face_finalize (FT_Face ft_face)
203 hb_face_destroy (ft_face->generic.data);
207 hb_ft_face_create_cached (FT_Face ft_face)
209 if (unlikely (!ft_face->generic.data || ft_face->generic.finalizer != (FT_Generic_Finalizer) hb_ft_face_finalize))
211 if (ft_face->generic.finalizer)
212 ft_face->generic.finalizer (ft_face);
214 ft_face->generic.data = hb_ft_face_create (ft_face, NULL);
215 ft_face->generic.finalizer = (FT_Generic_Finalizer) hb_ft_face_finalize;
218 return hb_face_reference (ft_face->generic.data);
223 hb_ft_font_create (FT_Face ft_face,
224 hb_destroy_func_t destroy)
228 font = hb_font_create ();
229 hb_font_set_funcs (font,
230 hb_ft_get_font_funcs (),
232 hb_font_set_scale (font,
233 ft_face->size->metrics.x_scale,
234 ft_face->size->metrics.y_scale);
235 hb_font_set_ppem (font,
236 ft_face->size->metrics.x_ppem,
237 ft_face->size->metrics.y_ppem);