summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/font.h6
-rw-r--r--include/mupdf/pdf/font.h2
2 files changed, 6 insertions, 2 deletions
diff --git a/include/mupdf/fitz/font.h b/include/mupdf/fitz/font.h
index 313f5ac8..236e1514 100644
--- a/include/mupdf/fitz/font.h
+++ b/include/mupdf/fitz/font.h
@@ -87,6 +87,12 @@ void fz_install_load_system_font_funcs(fz_context *ctx, fz_load_system_font_func
fz_font *fz_load_system_font(fz_context *ctx, const char *name, int bold, int italic, int needs_exact_metrics);
fz_font *fz_load_system_cjk_font(fz_context *ctx, const char *name, int ros, int serif);
+unsigned char *fz_lookup_base14_font(fz_context *ctx, const char *name, unsigned int *len);
+unsigned char *fz_lookup_cjk_font(fz_context *ctx, int registry, int serif, int wmode, unsigned int *len, int *index);
+unsigned char *fz_lookup_noto_font(fz_context *ctx, int script, int serif, unsigned int *len);
+unsigned char *fz_lookup_noto_symbol_font(fz_context *ctx, unsigned int *len);
+unsigned char *fz_lookup_noto_emoji_font(fz_context *ctx, unsigned int *len);
+
fz_font *fz_new_type3_font(fz_context *ctx, const char *name, const fz_matrix *matrix);
fz_font *fz_new_font_from_memory(fz_context *ctx, const char *name, unsigned char *data, int len, int index, int use_glyph_bbox);
diff --git a/include/mupdf/pdf/font.h b/include/mupdf/pdf/font.h
index 9bd8d913..17902198 100644
--- a/include/mupdf/pdf/font.h
+++ b/include/mupdf/pdf/font.h
@@ -103,9 +103,7 @@ void pdf_load_to_unicode(fz_context *ctx, pdf_document *doc, pdf_font_desc *font
int pdf_font_cid_to_gid(fz_context *ctx, pdf_font_desc *fontdesc, int cid);
-unsigned char *pdf_lookup_builtin_font(fz_context *ctx, const char *name, unsigned int *len);
unsigned char *pdf_lookup_substitute_font(fz_context *ctx, int mono, int serif, int bold, int italic, unsigned int *len);
-unsigned char *pdf_lookup_substitute_cjk_font(fz_context *ctx, int ros, int serif, int wmode, unsigned int *len, int *index);
pdf_font_desc *pdf_load_type3_font(fz_context *ctx, pdf_document *doc, pdf_obj *rdb, pdf_obj *obj);
void pdf_load_type3_glyphs(fz_context *ctx, pdf_document *doc, pdf_font_desc *fontdesc, int nestedDepth);