From 37f95f87bdfb2e0b01d649afae5fffe60bf99d3a Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Fri, 11 Nov 2016 16:05:30 +0000 Subject: Make fz_buffer structure private to fitz. Move the definition of the structure contents into new fitz-imp.h file. Make all code outside of fitz access the buffer through the defined API. Add a convenience API for people that want to get buffers as null terminated C strings. --- source/pdf/pdf-type3.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/pdf/pdf-type3.c') diff --git a/source/pdf/pdf-type3.c b/source/pdf/pdf-type3.c index ede5a5ee..677a26e5 100644 --- a/source/pdf/pdf-type3.c +++ b/source/pdf/pdf-type3.c @@ -165,7 +165,8 @@ pdf_load_type3_font(fz_context *ctx, pdf_document *doc, pdf_obj *rdb, pdf_obj *d if (pdf_is_stream(ctx, obj)) { font->t3procs[i] = pdf_load_stream(ctx, obj); - fontdesc->size += font->t3procs[i]->cap; + fz_trim_buffer(ctx, font->t3procs[i]); + fontdesc->size += fz_buffer_storage(ctx, font->t3procs[i], NULL); fontdesc->size += 0; // TODO: display list size calculation } } -- cgit v1.2.3