Re: labels for CD/DVDs - programmatically from script

Scott Serr <[email protected]> Wed, 27 Jul 2011 13:49:08 -0600 (MDT)
Newsgroups gmane.comp.video.image-magick.user
Message-ID <33015970.1521311796148800.JavaMail.root@mail>
----- "Scott Serr" <[email protected]> wrote:

> This sort of works:
> 
> convert  -size 480x480 xc:skyblue \
> 	\( -size 460x140 -font Helvetica -pointsize 24 -gravity center \
> 		label:'Red Hat Enterprise Linux\nStuff' \) \
> 	-geometry +0-150 -composite \
> 	\( -size 460x140 -font Helvetica -pointsize 24 -gravity center \
> 		label:'Version 5.6\nx86-64' \)  \
> 	-geometry +0+150 -composite \
> 	gif:- | display gif:-
> 
> The bottom text shows it's resized larger during compositing.  I'd
> like the two 460x150 region with a fixed sized font to be composited
> as is.  (trimmed in length of they are too long would be fine)

I was a bit off:

"Before version 6.5.2-4, IM would completely ignore the "-pointsize" setting if a "-size" setting is also given. This causes the text in the above images to be auto-sized according to the 'best fit' handling (see next set of examples)."

I'm wondering how I can work around this with an old version, 6.2.8.

-Scott