From b931bcfbc70135c81afe12a736dbb08912073ed3 Mon Sep 17 00:00:00 2001 From: Mike Swanson Date: Sat, 5 Dec 2015 06:48:35 -0800 Subject: [PATCH] titlepic: don't apply dithering --- graphics/titlepic/create_caption | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/graphics/titlepic/create_caption b/graphics/titlepic/create_caption index 9b757e75..916bab25 100755 --- a/graphics/titlepic/create_caption +++ b/graphics/titlepic/create_caption @@ -19,7 +19,7 @@ draw_with_footer() { output_file=$2; shift; shift - convert $input_file -fill white -font "$font" \ + convert $input_file -fill white -font "$font" +dither \ -pointsize 11 \ -gravity southwest \ -draw "text 5,5 'https://freedoom.github.io/'" \ @@ -30,12 +30,12 @@ draw_with_footer() { } if [ $# = 4 ]; then - draw_with_footer "$1" "$4" \ - -gravity north \ - -draw "image over -6,2 0,0 '$2'" \ - -pointsize 20 \ + draw_with_footer "$1" "$4" \ + -gravity north \ + -draw "image over -6,2 0,0 '$2'" \ + -pointsize 20 \ -draw "fill black stroke-width 4 stroke black text -5,160 '$3'" \ - -draw "text -4.5,160 '$3'" + -draw "text -5,160 '$3'" else draw_with_footer "$1" "$2" fi