summaryrefslogtreecommitdiff
path: root/content/handlers/pdf/pdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/handlers/pdf/pdf.c')
-rw-r--r--content/handlers/pdf/pdf.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/content/handlers/pdf/pdf.c b/content/handlers/pdf/pdf.c
index 89548cd46..ec283aa3a 100644
--- a/content/handlers/pdf/pdf.c
+++ b/content/handlers/pdf/pdf.c
@@ -1,6 +1,5 @@
/*
- * Copyright 2004 James Bursa <bursa@users.sourceforge.net>
- * Copyright 2004 John M Bell <jmb202@ecs.soton.ac.uk>
+ * Copyright 2018 Vincent Sanders <vince@netsurf-browser.org>
*
* This file is part of NetSurf, http://www.netsurf-browser.org/
*
@@ -154,7 +153,7 @@ static bool pdf_convert(struct content *c)
}
/** \todo extract documents starting page number */
- pdfc->current_page = 16;
+ pdfc->current_page = 0;
pdfres = nspdf_get_page_dimensions(pdfc->doc,
pdfc->current_page,
@@ -180,12 +179,16 @@ pdf_path(const struct nspdf_style *style,
{
const struct redraw_context *ctx = ctxin;
- ctx->plot->path(ctx,
- (const struct plot_style_s *)style,
- path,
- path_length,
- style->stroke_width,
- transform);
+ struct plot_style_s nsstyle;
+
+ nsstyle.stroke_type = style->stroke_type;
+ nsstyle.stroke_width = plot_style_float_to_fixed(style->stroke_width);
+ nsstyle.stroke_colour = style->stroke_colour;
+ nsstyle.fill_type = style->fill_type;
+ nsstyle.fill_colour = style->fill_colour;
+
+ ctx->plot->path(ctx, &nsstyle, path, path_length, transform);
+
return NSPDFERROR_OK;
}