-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
5 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,8 @@ Prerequisites: | |
|
||
To make and install pdf2svg: | ||
|
||
1) Download pdf2svg-0.2.1.tar.gz and unpack | ||
2) Change to the pdf2svg-0.2.1 directory | ||
1) Download pdf2svg-0.2.2.tar.gz and unpack | ||
2) Change to the pdf2svg-0.2.2 directory | ||
3) Do the normal ./configure && make && make install | ||
|
||
|
||
|
@@ -23,7 +23,7 @@ Usage: | |
pdf2svg <input.pdf> <output.svg> [<page no of pdf or "all">] | ||
|
||
|
||
Copyright (C) 2007 David Barton ([email protected]) | ||
Copyright (C) 2007-2013 David Barton ([email protected]) | ||
<http://www.cityinthesky.co.uk/> | ||
|
||
Copyright (C) 2007 Matthew Flaschen ([email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright (C) 2007 David Barton ([email protected]) | ||
// Copyright (C) 2007-2013 David Barton ([email protected]) | ||
// <http://www.cityinthesky.co.uk/> | ||
|
||
// Copyright (C) 2007 Matthew Flaschen ([email protected]) | ||
|
@@ -65,7 +65,7 @@ int convertPage(PopplerPage *page, const char* svgFilename) | |
drawcontext = cairo_create(surface); | ||
|
||
// Render the PDF file into the SVG file | ||
poppler_page_render(page, drawcontext); | ||
poppler_page_render_for_printing(page, drawcontext); | ||
cairo_show_page(drawcontext); | ||
|
||
// Close the SVG file | ||
|