Caption clips
Posted: 2013-05-30T14:40:09-07:00
In IM v6.8.5-0 (on Windows 7), "caption:" clips words where 6.8.4-0 didn't. I don't know if this is a new bug or a fix of an old bug. In other words, I don't know if 6.8.4 or 6.8.5 is correct. Examples:
In 6.8.4, only c2 is bad. The other versions show all the characters (possibly by splitting words).
Code: Select all
rem These two clip the long word:
convert -size 50x200 -pointsize 20 caption:"abc defghijklmnop" c1.png
convert -size 50x -pointsize 20 caption:"abc defghijklmnop" c2.png
Code: Select all
rem The next two are okay:
convert -size x200 -pointsize 20 caption:"abc defghijklmnop" c3.png
convert -size 50x200 caption:"abc defghijklmnop" c4.png
In 6.8.4, only c2 is bad. The other versions show all the characters (possibly by splitting words).
Code: Select all
convert -size 50x200 -pointsize 20 caption:"abc defghijklmnop" c1.png
convert -size 50x -pointsize 20 caption:"abc defghijklmnop" c2.png
Code: Select all
rem The next two are okay:
convert -size x200 -pointsize 20 caption:"abc defghijklmnop" c3.png
convert -size 50x200 caption:"abc defghijklmnop" c4.png