I'm trying to create a dynamic blur effect where the sigma value is dependent on other image value. I've tried this:
Code: Select all
-blur 0x%%[fx:h/400]
My IM version is 6.9.7 on Win10.
Code: Select all
-blur 0x%%[fx:h/400]
Code: Select all
magick toes.png -blur 0x%[fx:h/400] b.png
Code: Select all
for /F "usebackq" %L in (`identify -format "SIG=%[fx:h/400]" toes.png`) do set %L
convert toes.png -blur 0x%SIG% b.png