06-23-2022, 11:07 AM
(06-22-2022, 03:51 PM)Stephen Liu Wrote: I'll turn to IM command which can batch processing all photos in the same folder with one command. It is very convenient.
Now I'm searching the command for complex text;
1st line - x font, x text size, x color
2nd line - y font, y text size, x color
3rd line - z font, z text size, z color
etc.
Since you refuse to use BIMP and seem not to understand the Gimp text tool, why expect any answers.
This is a Gimp forum, the best place for ImageMagick questions is: https://github.com/ImageMagick/ImageMagick/discussions
However, for multi-line you need something like this
Code:
mogrify \
-define jpg -font Futura-Bold.ttf -pointsize 48 -fill red -annotate +50+100 "line 1" \
-font Ubuntu-M.ttf -pointsize 48 -fill green -annotate +50+150 "line 2" \
-font Futura-Bold.ttf -pointsize 30 -fill blue -annotate +50+200 "line 3" *.jpg
Note you need the font files (ttf) in the same place as the images. Example: