blob: f6818f180e354b436321e9839c229770b1e34ae2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
export LC_TIME=de_DE.utf-8
image=/mnt/ramdisk/$(date +'%H_%M').jpg
image_small=/mnt/ramdisk/$(date +'%H_%M')_thumb.jpg
rpicam-still -o $image
#add date string
convert $image -resize 1024x768 -gravity SouthEast -font DejaVu-Sans -pointsize 50 -stroke black -undercolor black -bordercolor white -border 10 -fill "rgba(255,255,255,0.5)" -annotate +30+30 "$(date +\\'%Y-%m-%d %H:%M\')" $image
convert $image -resize 200x150 $image_small
|