diff options
Diffstat (limited to 'scripts/webcamscript')
-rw-r--r-- | scripts/webcamscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/webcamscript b/scripts/webcamscript index 2e56b6f..3b490fb 100644 --- a/scripts/webcamscript +++ b/scripts/webcamscript @@ -11,9 +11,9 @@ cp ${WEBPATH}/public/img/buffer.${NAME}.webcam.jpg ${WEBPATH}/public/img/buffer. mogrify -resize 200x150 ${WEBPATH}/public/img/buffer.thumb.${NAME}.webcam.jpg if [ x"${TIMESTAMP}" == x"yes" ]; then if [ $TIME -lt 6 ] || [ $TIME -ge 18 ]; then - mogrify -contrast-stretch 0 -fill white -gravity SouthEast -draw "text 10,10 '${TODAY}'" ${WEBPATH}/public/img/buffer.${NAME}.webcam.jpg + mogrify -contrast-stretch 0 -adaptive-sharpen 3 -fill white -gravity SouthEast -draw "text 10,10 '${TODAY}'" ${WEBPATH}/public/img/buffer.${NAME}.webcam.jpg else - mogrify -contrast-stretch 0 -fill black -gravity SouthEast -draw "text 10,10 '${TODAY}'" ${WEBPATH}/public/img/buffer.${NAME}.webcam.jpg + mogrify -contrast-stretch 0 -adaptive-sharpen 3 -fill black -gravity SouthEast -draw "text 10,10 '${TODAY}'" ${WEBPATH}/public/img/buffer.${NAME}.webcam.jpg fi fi |