add-text-caption-to-image-with-imagemagick.md hinzugefügt
This commit is contained in:
parent
6c8ef43969
commit
63de574f8a
1 changed files with 11 additions and 0 deletions
11
add-text-caption-to-image-with-imagemagick.md
Normal file
11
add-text-caption-to-image-with-imagemagick.md
Normal 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
|
||||||
|
|
||||||
|
```
|
Loading…
Reference in a new issue