From 403376e890da062207597dbfce0b33ac63f2d4e7 Mon Sep 17 00:00:00 2001 From: John Tytgat Date: Thu, 5 Feb 2009 02:31:19 +0000 Subject: - desktop/save_pdf/pdf_plotters.c: - Have a set of libharu gstate update related wrapper routines which minimizes the gstate updates in the PDF file resulting in smaller PDF file size. - Colour values were wrongly scaled (was dividing by 256 instead of by 255). - pdf_plot_polygon(): last (closing) lineto wasn't needed, a fill operation will do that automatically. - pdf_scale/pdf_set_scale(): moved to desktop/save_pdf/font_haru.c as pdf_text_scale/haru_nsfont_set_scale(). - desktop/save_pdf/pdf_plotters.c(pdf_set_scale): moved to desktop/save_pdf/font_haru.h as haru_nsfont_set_scale(). - desktop/save_pdf/font_haru.c: - moved pdf_scale variable from pdf_plotters.c to here. - haru_nsfont_set_scale(): was pdf_set_scale from pdf_plotters.c - haru_nsfont_apply_style(): always calculate font size and pass it on to caller when requested. - desktop/save_pdf/font_haru.h: - haru_nsfont_set_scale(): declare. - haru_nsfont_apply_style(): add font size parameter - gtk/gtk_scaffolding.c(MENUHANDLER(export_pdf)): call haru_nsfont_set_scale() instead of pdf_set_scale(). svn path=/trunk/netsurf/; revision=6363 --- desktop/save_pdf/font_haru.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'desktop/save_pdf/font_haru.h') diff --git a/desktop/save_pdf/font_haru.h b/desktop/save_pdf/font_haru.h index a0d0c5ef7..0c5e3304b 100644 --- a/desktop/save_pdf/font_haru.h +++ b/desktop/save_pdf/font_haru.h @@ -1,5 +1,6 @@ /* * Copyright 2008 Adam Blokus + * Copyright 2009 John Tytgat * * This file is part of NetSurf, http://www.netsurf-browser.org/ * @@ -28,8 +29,10 @@ bool haru_nsfont_apply_style(const struct css_style *style, HPDF_Doc doc, HPDF_Page page, - HPDF_Font *font); - + HPDF_Font *font, HPDF_REAL *font_size); + +void haru_nsfont_set_scale(float s); + extern const struct font_functions haru_nsfont; #endif -- cgit v1.2.3