Compress not working with text to image

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
sky_1
Posts: 4
Joined: 2019-06-15T10:54:09-07:00
Authentication code: 1152

Compress not working with text to image

Post by sky_1 »

When I use the first command below, hi is in the image file xaab.tif. But when I add "-compress Group4" in the second command below, I got white image with no word hi in it. There is no error with the second command. Any idea? The version is Version: ImageMagick 6.7.8-9 running on Linux 7.5

convert -size 1133x550 -font Courier-Bold -pointsize 60 -gravity Center caption:'hi' xaab.tif

convert -size 1133x550 -font Courier-Bold -pointsize 60 -gravity Center -compress Group4 caption:'hi test' xaab.tif
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Test to image compress not working

Post by snibgo »

It works fine with v6.9.9-50. Your version is very old. I suggest you upgrade.
snibgo's IM pages: im.snibgo.com
sky_1
Posts: 4
Joined: 2019-06-15T10:54:09-07:00
Authentication code: 1152

Re: Compress not working with text to image

Post by sky_1 »

I will try it out. Thank you!
Post Reply