Search found 8 matches

by Laxgi
2014-02-24T08:21:15-07:00
Forum: Users
Topic: Scale PDF to A4 (via PDF to JPG to PDF?)
Replies: 14
Views: 54467

Re: Scale PDF to A4 (via PDF to JPG to PDF?)

I'll try to update. density lower than 300 isn't possible, then you can't read smaller parts after printing.
by Laxgi
2014-02-24T02:40:51-07:00
Forum: Users
Topic: Scale PDF to A4 (via PDF to JPG to PDF?)
Replies: 14
Views: 54467

Re: Scale PDF to A4 (via PDF to JPG to PDF?)

Is it possible to make this a Little bit faster?
Maybe by compressing the pages or something else?
For 3 Pages in A3 in 300 DPI I need about 15 sec.

Code: Select all

convert -density 500 win/tmp/1in.pdf -resize 70.71% win/tmp/6.jpg
convert win/tmp/6.jpg win/tmp/6out.pdf
by Laxgi
2014-02-23T23:51:26-07:00
Forum: Users
Topic: Scale PDF to A4 (via PDF to JPG to PDF?)
Replies: 14
Views: 54467

Re: Scale PDF to A4 (via PDF to JPG to PDF?)

Updating is not possible,

but I found an Solution for me:

Converting to PDF incl. resizing

Code: Select all

convert -density 500 win/tmp/1in.pdf -resize 70.71% win/tmp/6.jpg
Converting to PDF

Code: Select all

convert win/tmp/6.jpg win/tmp/6out.pdf
by Laxgi
2014-02-21T04:49:37-07:00
Forum: Users
Topic: Scale PDF to A4 (via PDF to JPG to PDF?)
Replies: 14
Views: 54467

Re: Scale PDF to A4 (via PDF to JPG to PDF?)

Im using GS 8.7 and IM 6.28.
by Laxgi
2014-02-21T04:34:07-07:00
Forum: Users
Topic: Scale PDF to A4 (via PDF to JPG to PDF?)
Replies: 14
Views: 54467

Re: Scale PDF to A4 (via PDF to JPG to PDF?)

With

Code: Select all

convert -density 600 testa3.pdf -resize 70.71% a.pdf
I get:
"Page size: 25,0 x 35,6mm"
That's not the correct page size. :(

Image
by Laxgi
2014-02-21T03:51:14-07:00
Forum: Users
Topic: Scale PDF to A4 (via PDF to JPG to PDF?)
Replies: 14
Views: 54467

Re: Scale PDF to A4 (via PDF to JPG to PDF?)

No Problem, I made a simple Test-PDF with graphical Annotations (they are very important for me): http://huebner-tim.de/wordpress/?attachment_id=501 With this convert -density 300 -page A4 win/tmp/A3.PDF win/tmp/A4.pdf I get this result (only cutted, not smaller): http://huebner-tim.de/wordpress/wp ...
by Laxgi
2014-02-21T02:21:51-07:00
Forum: Users
Topic: Scale PDF to A4 (via PDF to JPG to PDF?)
Replies: 14
Views: 54467

Re: Scale PDF to A4 (via PDF to JPG to PDF?)

Resize works perfect, size is correct but the Quality is bad.

Code: Select all

convert win/tmp/THY.pdf -resize 70.71%  win/tmp/THTEST.PDF
When I use

Code: Select all

convert -density 300 win/tmp/THY.pdf -resize 70.71%  win/tmp/THTEST.PDF
Size is "50,4 x 71,3 mm".
by Laxgi
2014-02-21T01:26:41-07:00
Forum: Users
Topic: Scale PDF to A4 (via PDF to JPG to PDF?)
Replies: 14
Views: 54467

Scale PDF to A4 (via PDF to JPG to PDF?)

Hey, I would like to scale big PDFs to A4-papersize. Tried different Tools, but all of them delete graphical annotations (you can add them via Adobe - Reader). So I found the beautiful tool "convert" PDF to PDF A4 doens't work for me, any fault in this command? convert -density 300 win/tmp/A3.PDF ...