Search found 11 matches

by akapuma
2014-11-24T03:50:16-07:00
Forum: Bugs
Topic: PDF is too small (in cm)
Replies: 28
Views: 21350

Re: PDF is too small (in cm)

fmw42 wrote:I do not think -size is relevant here.
I think, size is relevant, because the input file is not a raster file. It's a postscript, without a size in pixels.

Best regards

akapuma
by akapuma
2014-11-19T00:24:40-07:00
Forum: Bugs
Topic: PDF is too small (in cm)
Replies: 28
Views: 21350

Re: PDF is too small (in cm)

This is shorthand for "-page 595x842", which is A4 at 72 dpi. But you have 300 dpi, so the result won't be A4. That's interesting. Now, I tried: convert -limit memory 1GiB -limit map 2GiB -define registry:temporary-path="c:\tmp" -size 2480x3508 -density 300x300 -units pixelsperi...
by akapuma
2014-11-18T09:41:10-07:00
Forum: Bugs
Topic: PDF is too small (in cm)
Replies: 28
Views: 21350

Re: PDF is too small (in cm)

I think, some samples will help: This is a text in different sizes and colors: http://akapuma.info/sonstiges/coloured.pdf Conversion with ghostsript only (tiff2pdf after that): gs -o testpage.tif -sDEVICE=tiffg4 -r300 testpage.ps Result: http://akapuma.info/sonstiges/gsonly.pdf => the yellow text is...
by akapuma
2014-11-18T06:30:22-07:00
Forum: Bugs
Topic: PDF is too small (in cm)
Replies: 28
Views: 21350

Re: PDF is too small (in cm)

Hello pipitas, If you do not want dithering, but black filled areas and white filled areas all over the page, you need to use a different workflow. That is also possible. Please as a new question for this, and clearly state your goals. The following command line from my first post does, what I want....
by akapuma
2014-11-18T05:16:18-07:00
Forum: Bugs
Topic: PDF is too small (in cm)
Replies: 28
Views: 21350

Re: PDF is too small (in cm)

Hellp pepitas, gs -o testpage.tif -sDEVICE=tiffg4 -r300 testpage.ps tiff2pdf -p A4 -F testpage.tif > testpage.tif.pdf Thank you for the great idea to solve my problem with ghostscript. It works fine, but unfortunately the gs uses dithering. Any idea to convert in back/white without dithering? Best r...
by akapuma
2014-11-14T07:55:07-07:00
Forum: Bugs
Topic: PDF is too small (in cm)
Replies: 28
Views: 21350

Re: PDF is too small (in cm)

Why do you even use ImageMagick for this job in the first place?!? I want to have a PDF with the following requirements: - no fonts, no vector graphics, bitmap graphics only - Because the size of a bitmap is very high, a good compression is needed. Very effective is fax compression group 4. - The f...
by akapuma
2014-11-14T03:52:03-07:00
Forum: Bugs
Topic: PDF is too small (in cm)
Replies: 28
Views: 21350

Re: PDF is too small (in cm)

The syntax is wrong. It should be: input-file, processing, output file, like this: In this case, the result is wrong. For testing, you can use this test picture: http://anders.geekhouse.no/Testpage/ Remove "-density 300x300". I think the size will then be A4. Yes, this works, output is A4...
by akapuma
2014-11-14T01:43:16-07:00
Forum: Bugs
Topic: PDF is too small (in cm)
Replies: 28
Views: 21350

PDF is too small (in cm)

Hello, I want to convert a postscript file (.PS) into a PDF file. I'm using the following command line: convert -limit memory 1GiB -limit map 2GiB -define registry:temporary-path="c:\tmp" -density 300x300 -page A4 -colors 2 +dither -monochrome -compress group4 input.ps output.pdf The probl...
by akapuma
2014-05-14T09:05:03-07:00
Forum: Bugs
Topic: PS to PDF issue with 6.8.9.1, 6.8.9 was OK
Replies: 4
Views: 6502

Re: PS to PDF issue with 6.8.9.1, 6.8.9 was OK

I'm sorry, I can't reproduce it now: installed IM 6.8.9 => works fine installed IM 6.8.9-1 => not fine "not fine" was reproducible with several files installed IM 6.8.9 => works fine uninstalled 6.8.9 installed IM 6.8.9-1 => works fine installed IM 6.8.9 => works fine installed IM 6.8.9-1 ...
by akapuma
2014-05-14T08:14:41-07:00
Forum: Bugs
Topic: PS to PDF issue with 6.8.9.1, 6.8.9 was OK
Replies: 4
Views: 6502

Re: PS to PDF issue with 6.8.9.1, 6.8.9 was OK

Oh yes, it's a typo: convert -limit memory 1GiB -limit map 2GiB -limit disk 4GiB -colors 2 -monochrome -compress group4 -density 300x300 -page A4 +dither testpage.ps pdffile. pdf is correct. Normally, there a placeholder in a batch file. Therefore, this is not the reason for the problem. Ghostscript...
by akapuma
2014-05-14T07:16:03-07:00
Forum: Bugs
Topic: PS to PDF issue with 6.8.9.1, 6.8.9 was OK
Replies: 4
Views: 6502

PS to PDF issue with 6.8.9.1, 6.8.9 was OK

Hello, I'm converting a PS-file into a PDF file. File ist "testpage.ps": http://anders.geekhouse.no/Testpage/ My commandline is convert -limit memory 1GiB -limit map 2GiB -limit disk 4GiB -colors 2 -monochrome -compress group4 -density 300x300 -page A4 +dither testpage.ps pdffile.ps With 6...