Search found 11 matches

by dowcet
2015-10-10T23:46:56-07:00
Forum: Users
Topic: trouble converting PNG to PDF
Replies: 4
Views: 3645

Re: trouble converting PNG to PDF

That helps a lot... thank you, snibgo!
by dowcet
2015-10-10T02:25:35-07:00
Forum: Users
Topic: trouble converting PNG to PDF
Replies: 4
Views: 3645

Re: trouble converting PNG to PDF

I see, thanks... Is there some kind of tutorial out there to help me understand what a sensible density setting is for a given image? "identify verbose input.png" gives me a ton of output. "identify -verbose input.png | grep -i 'resolution'" gives me "Resolution: 0.15x0.15&q...
by dowcet
2015-10-09T00:15:37-07:00
Forum: Users
Topic: trouble converting PNG to PDF
Replies: 4
Views: 3645

trouble converting PNG to PDF

Here is an example image. Call it input.png. Here is the result I get from "convert input.png output.pdf". Depending on the PDF viewer I use, the resulting PDF is either a) blank or b) displays at an extremely high resolution, so that I have to zoom to less then 1% to read it. Setting &qu...
by dowcet
2015-05-05T20:47:29-07:00
Forum: Users
Topic: Tiff to JBIG2 PDF?
Replies: 10
Views: 12579

Re: Tiff to JBIG2 PDF?

Thanks for the tips, pipitas. I'm just going to stick with Group4 and forget about JBIG2. Knowing about `pdfimages -list` is also a big help.
by dowcet
2015-05-02T07:12:46-07:00
Forum: Users
Topic: Tiff to JBIG2 PDF?
Replies: 10
Views: 12579

Re: Tiff to JBIG2 PDF?

This one gives me a file about the same size as the original: convert input.tif -compress Group4 -density 300 -type bilevel TIFF:- | convert - output.pdf I saved a fair bit of space without too much loss in quality like so: convert input.tif -compress Group4 -adaptive-resize 75% -density 200 -type b...
by dowcet
2015-05-01T23:57:14-07:00
Forum: Users
Topic: Tiff to JBIG2 PDF?
Replies: 10
Views: 12579

Re: Tiff to JBIG2 PDF?

These are helpful suggestions. I am already finding that resizing the TIFF first and then converting to PDF in a separate step seems to make difference. I'll keep experimenting for now.
by dowcet
2015-05-01T20:17:35-07:00
Forum: Users
Topic: Tiff to JBIG2 PDF?
Replies: 10
Views: 12579

Re: Tiff to JBIG2 PDF?

I do see JBIG2 on the list when I do `convert -list compress` but every compression option I have tried seems to give the exact same result. I have also tried the depth option: convert input.tif -compress JBIG2 -density 300 -depth 8 output.pdf But again, the resulting output is also exactly the same...
by dowcet
2015-05-01T07:57:38-07:00
Forum: Users
Topic: Tiff to JBIG2 PDF?
Replies: 10
Views: 12579

Tiff to JBIG2 PDF?

I have a bunch of scanned monochrome images like this: input.tif TIFF 3184x5276 3184x5276+0+0 1-bit Bilevel DirectClass 104KB 0.000u 0:00.000 I want to make a PDF which will not be so large. From what I understand JBIG2 compression is the best available for monochrome PDFs. So I tried this: convert ...
by dowcet
2015-04-22T00:40:08-07:00
Forum: Users
Topic: Converting images into pdf files with equal sizes?
Replies: 4
Views: 8294

Re: Converting images into pdf files with equal sizes?

I was going to start a new question but this discussion seems closely related. I have an image like this. Format: JPEG (Joint Photographic Experts Group JFIF format) Class: DirectClass Geometry: 2560x1280+0+0 Resolution: 300x300 Print size: 8.53333x4.26667 Units: PixelsPerInch A density of 300 resul...
by dowcet
2015-04-04T21:10:06-07:00
Forum: Users
Topic: What do the last two items in 'identify' output mean?
Replies: 2
Views: 3309

Re: What do the last two items in 'identify' output mean?

Thanks, that helps! Now I see it labelled as such, way down near the bottom of the `-verbose` output:

Code: Select all

User time: 0.000u
Elapsed time: 0:01.000
by dowcet
2015-04-03T23:59:53-07:00
Forum: Users
Topic: What do the last two items in 'identify' output mean?
Replies: 2
Views: 3309

What do the last two items in 'identify' output mean?

Here is an example of identify's basic output, from the ImageMagic website:

Code: Select all

-> identify rose.jpg
rose.jpg JPEG 70x46 70x46+0+0 8-bit sRGB 2.36KB 0.000u 0:00.000
What do the "0.000u" and "0:00.000" represent?