I'm a complete beginner and I'm trying to convert my Raspberry Pi in a weather cam. I'm not interested in streaming, I'm using a camera module and some raspistill commands in order to take a picture of a landscape every 5 minutes. Then I send the picture to my website using ftp. Everything is going fine but now I need help to add a couple of informations like my website and date time stamp to a jpg picture shot.
Here's an example of what I'd like to obtain:

At the moment I use this bash script:
Code: Select all
#!/bin/bash
TMP='/tmp'
OUTPUT_FILE='webcam.jpg'
OPTIONS='-w 800 -h 600 -q 80'
cd $TMP
raspistill -o $OUTPUT_FILE $OPTIONS
/usr/local/bin/send-ftp $OUTPUT_FILE