Changes between Initial Version and Version 3 of Ticket #32270


Ignore:
Timestamp:
Nov 26, 2011, 9:10:20 PM (12 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Please remember to use WikiFormatting.

Has this already been reported to the developers of pdf2svg?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32270

    • Property Cc wagle@… removed
    • Property Priority changed from High to Normal
  • Ticket #32270 – Description

    initial v3  
    33lines now come out with a thickness of 1 instead of 0.398.  according to the irc channel:
    44
     5{{{
    56<wagle> if pdf2svg uses poppler, and now draws lines too thick compared to 6-9 months ago, is poppler the one at fault?  The lines used to be 0.398 thick, are now 1
    67<adrianj> wagle: pdf2svg should be calling poppler_page_render_for_printing() instead of poppler_page_render(). The former is for use with cairo vector surfaces. The latter for image surfaces.
    78<adrianj> The stroke adjust feature will cause lines < 1 wide to be adjusted to 1 pixel wide but only for image surfaces.
     9}}}
    810
    911here's the patch:
    1012
     13{{{
    1114$ diff -Naur pdf2svg.c.ORIG pdf2svg.c
    1215--- pdf2svg.c.ORIG      2008-02-01 10:28:35.000000000 -0800
     
    2124 
    2225     // Close the SVG file
     26}}}