Sorry for the multiple post anyway. Now I did change the code from
convert source.png \( -clone 0 -blur 0x9-resize WxH\! \) \( -clone 0 -resize WxH \) \
-delete 0 -gravity center -compose over -composite result.png
to
convert source.png ^( -clone 0 -blur 0x9-resize WxH\! ) ^( -clone 0 -resize WxH ) ^
-delete 0 -gravity center -compose over -composite result.png
but it didn't work, I suppose I didn't do the changes right. I also tried this code too
if not exist "%~dp1output" md "%~dp1output"
for %%f in ("%~dp1*.jpg" "%~dp1*.jpeg" "%~dp1*.png") do convert "%%f" ( +clone -geometry x1080 ) ( -clone 0 -geometry 1920x -gravity center -crop 1920x1080+0+0 -blur 0x8 ) -delete 0 +swap -gravity center -compose over -composite "output\%%~nf_1080.jpg"
as described on this page (
https://www.reddit.com/r/software/comme ... ackground/) but when I ran the .bat file which I created, I got "Invalid parameter" error
If it could help, how about we picture a folder on Desktop (windows 8 64bit) containing pictures. How do I carry the aforementioned process on them? I already have image magic (first option from this link "
http://www.imagemagick.org/script/binar ... hp#windows") installed. Your thoughts are most welcomed