You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
603 B
24 lines
603 B
11 years ago
|
#!/bin/bash
|
||
|
|
||
|
#Создан: Вс 27 апр 2014 18:37:42
|
||
|
#Изменён: Вс 27 апр 2014 19:29:26
|
||
|
|
||
|
convert "$1" -resize x400 \
|
||
|
-gravity West -background white -splice 30x0 \
|
||
|
-gravity East -background white -splice 30x0 \
|
||
|
-gravity North -background white -splice 0x90 \
|
||
|
-gravity South -background white -splice 0x30 \
|
||
|
-gravity North \
|
||
|
-font "Helvetica" \
|
||
|
-pointsize 24 \
|
||
|
-draw "text 0,20 '$2'" \
|
||
|
-gravity North \
|
||
|
-font "Helvetica" \
|
||
|
-pointsize 17 \
|
||
|
-draw "text 0,55 '$3'" \
|
||
|
-gravity South \
|
||
|
-font "Helvetica" \
|
||
|
-pointsize 15 \
|
||
|
-draw "text 0,8 '$4'" "${1}_af.jpg"
|
||
|
|