I am using the following command sequence (which works pretty well)
convert $PIC -extent ${PIC_PX}x${PIC_PY}+0+0 \
'(' +clone -alpha transparent -draw 'circle 1920,1080 1920,0' ')' \
-compose copyopacity -composite circle.png
Now I want to substitute constants by variables
Var1=1920;
Var2=1080;
Var3=1920;
Var4=0
Can you help me with the right notation, please?
Thanks in advance
convert "$PIC" ...and note that the shell reserves variables named in all uppercase letters for its own internal use.