Search found 7 matches

by leeeeeo
2016-09-26T05:22:37-07:00
Forum: Bugs
Topic: ImageMagick CCITT Group4 pdf creation doesn't work anymore
Replies: 13
Views: 16810

Re: ImageMagick CCITT Group4 pdf creation doesn't work anymore

Seems fixed in version: ImageMagick 6.9.5-10 Q16 x86_64 2016-09-26 http://www.imagemagick.org
by leeeeeo
2016-09-24T12:27:19-07:00
Forum: Bugs
Topic: ImageMagick CCITT Group4 pdf creation doesn't work anymore
Replies: 13
Views: 16810

Re: ImageMagick CCITT Group4 pdf creation doesn't work anymore

One more relevant info on OS X (MacPorts) - workaround.

After uninstall last version (ImageMagick@6.9.5-9_0+x11) and activate ImageMagick @6.9.5-8_0+x11, PDF is correctly generated.

$ sudo port uninstall ImageMagick@6.9.5-9_0+x11
---> Deactivating ImageMagick @6.9.5-9_0+x11
---> Cleaning ...
by leeeeeo
2016-09-24T12:11:39-07:00
Forum: Bugs
Topic: ImageMagick CCITT Group4 pdf creation doesn't work anymore
Replies: 13
Views: 16810

Re: ImageMagick CCITT Group4 pdf creation doesn't work anymore

All of them works fine, except "fax" and "group4" (best compression for bitonal files).

$ convert ./FzwRW-1.jpg -threshold 60% -compress JPEG2000 ./out.pdf
$ convert ./FzwRW-1.jpg -threshold 60% -compress B44 ./out.pdf
$ convert ./FzwRW-1.jpg -threshold 60% -compress B44A ./out.pdf
$ convert ...
by leeeeeo
2016-09-24T12:07:18-07:00
Forum: Bugs
Topic: ImageMagick CCITT Group4 pdf creation doesn't work anymore
Replies: 13
Views: 16810

Re: ImageMagick CCITT Group4 pdf creation doesn't work anymore

Did some successful tests withing Windows ImageMagick through cygwin 64bit.

leonardo@win81-virt ~/leonardo/Downloads/testDocs
$ convert -list format | grep -i jpeg
see part 5 which describes the image encoding (RLE, JPEG, JPEG-LS),
and supplement 61 which adds JPEG-2000 encoding.
J2C* rw- JPEG ...
by leeeeeo
2016-09-24T03:39:28-07:00
Forum: Bugs
Topic: ImageMagick CCITT Group4 pdf creation doesn't work anymore
Replies: 13
Views: 16810

Re: ImageMagick CCITT Group4 pdf creation doesn't work anymore

Here are the results:

$ convert -list format | grep -i jpeg
see part 5 which describes the image encoding (RLE, JPEG, JPEG-LS),
and supplement 61 which adds JPEG-2000 encoding.
J2C* JP2 rw- JPEG-2000 Code Stream Syntax (2.1.0)
J2K* JP2 rw- JPEG-2000 Code Stream Syntax (2.1.0)
JNG* PNG rw ...
by leeeeeo
2016-09-23T17:06:15-07:00
Forum: Bugs
Topic: ImageMagick CCITT Group4 pdf creation doesn't work anymore
Replies: 13
Views: 16810

Re: ImageMagick CCITT Group4 pdf creation doesn't work anymore

Confirm.
Just run
convert ./FzwRW-1.jpg -threshold 60% ./FzwRW-input_unprotected.pdf
and you will get normal (big) PDF.
With
convert ./FzwRW-1.jpg -threshold 60% -compress Group4 ./FzwRW-input_unprotected.pdf
you will get a black page corrupted PDF.
MacOS with MacPorts.
$ convert -version ...