Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
set INDIR=d:\
set OUTDIR=d:\LOGO
for /F "usebackq" %%F in (`dir /b %INDIR%\*.gif`) do (
magick "%INDIR%\%%F" -gravity SouthEast null: watermark.png -layers composite "%OUTDIR%\%%~nxF"
rem del /Q "%INDIR%\%%F"
)
Is there any way to change watermark.png opacity? I was trying to use -watermark 30%%, but got "unrecognized option "-watermark"" error. Thanks.