add-text-caption-to-image-with-imagemagick.md hinzugefügt

This commit is contained in:
DeltaLima 2024-06-06 00:31:15 +02:00
parent 6c8ef43969
commit 63de574f8a

View File

@ -0,0 +1,11 @@
```
convert input.jpg -font Liberation-Sans -fill white -undercolor '#00000080' -pointsize 14 -gravity NorthEast -annotate +5+5 "blablabla" output.jpg
```
for my cangrow project
```
convert cangrow.jpg -font Liberation-Sans -fill white -undercolor '#00000080' -pointsize 14 -gravity NorthEast -annotate +5+5 "$(curl -s http://192.168.30.42/api/debug | jq -r '.grow[].GrowName') - $(date '+ %d.%m.%Y %T')" out.jpg
```