Search found 3 matches

by donnied
2011-02-21T07:44:19-07:00
Forum: Users
Topic: Adding leading and trailing space to text
Replies: 2
Views: 5306

Adding leading and trailing space to text

I have text that I would like to graphics from. The basic command is: convert -background "#FFCC99" -fill '#993333' -pointsize 11 -font Verdana-Regular -size 200x14 label: "foo" foo.png I had hoped to adjust the positioning of the text within the field similar to gravity but with explicit ...
by donnied
2009-01-10T13:38:49-07:00
Forum: Users
Topic: How to wrap this text automatically using 'text'
Replies: 2
Views: 11913

Re: How to wrap this text automatically using 'text'

I decided to go with:

Code: Select all

for ((i=1; i<=64; i++));do export a=${intro:0:$i};echo $a; echo $a| convert -size 1024x -font Essays1743-BoldItalic  -pointsize 42  -channel RGBA -background transparent -fill dodgerblue1 -stroke slategray4 caption:@- intro$i.png; done
Thank you.
by donnied
2009-01-05T05:39:09-07:00
Forum: Users
Topic: How to wrap this text automatically using 'text'
Replies: 2
Views: 11913

How to wrap this text automatically using 'text'

I am trying to create image files for various text. I would like it to auto wrap and it seems that I'll need to use caption and specify the size with only one dimension (1000x). Can I word wrap automatically using the text option? Typically I would do: for ((i=1; i<=185; i++));do export b=${fsf3:0 ...