Changes between Initial Version and Version 3 of Ticket #32270
- Timestamp:
- Nov 26, 2011, 9:10:20 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32270
- Property Cc wagle@… removed
-
Property
Priority
changed from
High
toNormal
-
Ticket #32270 – Description
initial v3 3 3 lines now come out with a thickness of 1 instead of 0.398. according to the irc channel: 4 4 5 {{{ 5 6 <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 6 7 <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. 7 8 <adrianj> The stroke adjust feature will cause lines < 1 wide to be adjusted to 1 pixel wide but only for image surfaces. 9 }}} 8 10 9 11 here's the patch: 10 12 13 {{{ 11 14 $ diff -Naur pdf2svg.c.ORIG pdf2svg.c 12 15 --- pdf2svg.c.ORIG 2008-02-01 10:28:35.000000000 -0800 … … 21 24 22 25 // Close the SVG file 26 }}}