create_caption: change color to orange

For better visibility.
This commit is contained in:
Ayub Ahmed 2017-03-11 18:37:43 +06:00 committed by GitHub
parent 5efe26a29b
commit 2326d4a741

View file

@ -19,13 +19,13 @@ draw_with_footer() {
output_file=$2; output_file=$2;
shift; shift shift; shift
convert $input_file -fill blue -font "$font" +dither -style oblique \ convert $input_file -fill orange -font "$font" +dither -style oblique \
-pointsize 11 \ -pointsize 11 \
-gravity southwest \ -gravity southwest \
-draw "text 5,5 'Freedoom, © 2001-2017'" \ -draw "text 5,5 'Freedoom, © 2001-2017'" \
-gravity southeast \ -gravity southeast \
-draw "text 10,5 '$VERSION'" \ -draw "text 10,5 '$VERSION'" \
"$@" \ "$@" \
$output_file $output_file
} }