diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-04-04 16:44:05 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2016-04-04 16:52:03 +0200 |
commit | a1c34c0224d32ed4f9f2909863e8ac907c94524d (patch) | |
tree | 9e8994c0db2b8f105a022e23b24735670665fba3 /include | |
parent | 9dc58cc827521b11d4eb8e2dd14e7e26bef74edb (diff) | |
download | mupdf-a1c34c0224d32ed4f9f2909863e8ac907c94524d.tar.xz |
Add glyph names to trace device output.
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/fitz/font.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mupdf/fitz/font.h b/include/mupdf/fitz/font.h index 8f3c6e72..e4feaab7 100644 --- a/include/mupdf/fitz/font.h +++ b/include/mupdf/fitz/font.h @@ -121,6 +121,7 @@ void fz_decouple_type3_font(fz_context *ctx, fz_font *font, void *t3doc); float fz_advance_glyph(fz_context *ctx, fz_font *font, int glyph, int wmode); int fz_encode_character(fz_context *ctx, fz_font *font, int unicode); int fz_encode_character_with_fallback(fz_context *ctx, fz_font *font, int unicode, int script, fz_font **out_font); +void fz_get_glyph_name(fz_context *ctx, fz_font *font, int glyph, char *buf, int size); void fz_print_font(fz_context *ctx, fz_output *out, fz_font *font); |