From a4a2252741ab398f6c45b96c4ba57215fc67ec79 Mon Sep 17 00:00:00 2001 From: Lu Wang Date: Tue, 2 Oct 2012 04:31:55 +0800 Subject: [PATCH] don't stroke when fill --- src/HTMLRenderer/draw.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/HTMLRenderer/draw.cc b/src/HTMLRenderer/draw.cc index 5053357..c311931 100644 --- a/src/HTMLRenderer/draw.cc +++ b/src/HTMLRenderer/draw.cc @@ -81,18 +81,18 @@ void HTMLRenderer::css_draw(GfxState *state, bool fill) if(y1 > y2) swap(y1, y2); double x,y,w,h,lw[2]; - css_fix_rectangle_border_width(x1, y1, x2, y2, state->getLineWidth(), + css_fix_rectangle_border_width(x1, y1, x2, y2, (fill ? 0.0 : state->getLineWidth()), x,y,w,h,lw[0],lw[1]); GfxRGB stroke_color; - state->getStrokeRGB(&stroke_color); + if(!fill) state->getStrokeRGB(&stroke_color); GfxRGB fill_color; if(fill) state->getFillRGB(&fill_color); int lw_count = 2; - GfxRGB * ps = &stroke_color; + GfxRGB * ps = fill ? nullptr : (&stroke_color); GfxRGB * pf = fill ? (&fill_color) : nullptr; if(_equal(h, 0) || _equal(w, 0)) @@ -100,8 +100,8 @@ void HTMLRenderer::css_draw(GfxState *state, bool fill) // orthogonal line // TODO: check length + pf = ps; ps = nullptr; - pf = &stroke_color; h += lw[0]; w += lw[1]; }