summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-font.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2014-07-16 17:07:19 +0200
committerTor Andersson <tor.andersson@artifex.com>2014-07-17 16:17:51 +0200
commit2a1a79c623636c8cf47a96ca8424174a9283aa10 (patch)
treee7f0266154c0481f754240a5906b3b8b7ee79d58 /source/pdf/pdf-font.c
parentc10b594931c53b9989184b44a12d9acc1f28deb6 (diff)
downloadmupdf-2a1a79c623636c8cf47a96ca8424174a9283aa10.tar.xz
Improve callback for loading substitute CJK fonts to return TTC index.
Diffstat (limited to 'source/pdf/pdf-font.c')
-rw-r--r--source/pdf/pdf-font.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/pdf/pdf-font.c b/source/pdf/pdf-font.c
index c6dc7123..5ac722f0 100644
--- a/source/pdf/pdf-font.c
+++ b/source/pdf/pdf-font.c
@@ -228,14 +228,14 @@ pdf_load_substitute_cjk_font(fz_context *ctx, pdf_font_desc *fontdesc, char *fon
{
unsigned char *data;
unsigned int len;
+ int index;
- data = pdf_lookup_substitute_cjk_font(ros, serif, &len);
+ data = pdf_lookup_substitute_cjk_font(ros, serif, fontdesc->wmode, &len, &index);
if (!data)
fz_throw(ctx, FZ_ERROR_GENERIC, "cannot find builtin CJK font");
- /* The DroidSansFallback fonts have both H and V variants in the TTC */
- /* A glyph bbox cache is too big for DroidSansFallback (51k glyphs!) */
- fontdesc->font = fz_new_font_from_memory(ctx, fontname, data, len, fontdesc->wmode, 0);
+ /* A glyph bbox cache is too big for CJK fonts. */
+ fontdesc->font = fz_new_font_from_memory(ctx, fontname, data, len, index, 0);
}
fontdesc->font->ft_substitute = 1;