Thanks a lot for helping this far, but now i'm getting sleeping problem...
This result in
no caption:
convert $argv[1] \
-bordercolor black -border 3 -bordercolor white -border 2 \
\( -background none -fill red -size 250x -pointsize 50 \
caption:'THIS IS TEST 1' -gravity northwest -geometry +10+10 -compose over -composite \
-background none -fill blue -size 250x -pointsize 50 \
caption:'THIS IS TEST 2' -gravity southeast -geometry +10+10 -compose over -composite \
-bordercolor black -border 10 \
\) -gravity east \
-append \
-bordercolor black -border 10 \
-gravity South -chop 0x10 \
$outfile
This result in 3 captions. "Hatching" is the one that control size of the bottom border. I want the caption with most text/lines control size.
convert $argv[1] \
-bordercolor black -border 3 -bordercolor white -border 2 \
\( -background black -fill white -pointsize 100 \
label:Hatching \
-bordercolor black -border 10 \
\) -gravity east \
-append \
-bordercolor black -border 10 -background none -fill red -size 250x -pointsize 50 \
caption:'THIS IS TEST 1' -gravity northwest -geometry +10+10 -compose over -composite \
-background none -fill blue -size 250x -pointsize 50 \
caption:'THIS IS TEST 2' -gravity southeast -geometry +10+10 -compose over -composite \
-gravity South -chop 0x10 \
$outfile
This results in two labels, but it makes a newline between the two captions, i can't get them on the same row and can't place them individually with -gravity.
convert $argv[1] \
-bordercolor black -border 3 -bordercolor white -border 2 \
\( -background black -fill white -pointsize 100 \
label:Hatching label:right \
-bordercolor black -border 10 \
\) -gravity east \
-append \
-bordercolor black -border 10 -gravity South -chop 0x10 \
$outfile
Same result as above, but both labels in left corner and with one newline between.
convert $argv[1] \
-bordercolor black -border 3 -bordercolor white -border 2 \
\( -background black -fill white -pointsize 100 \
label:Hatching \
-bordercolor black -border 10 \
\) -gravity east \
\( -background black -fill white -pointsize 100 \
label:Hatcyhing \
-bordercolor black -border 10 \
\) \
-gravity west -append \
-bordercolor black -border 10 -gravity South -chop 0x10 \
$outfile
Please, anymore tips?