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?".
Hi all. I'm working on generation loss for my architecture thesis project. I'm very new to coding. I found Burny's code for generation loss https://commons.wikimedia.org/wiki/File ... times).png. That was then translated to Windows, but it's not working for me.
%IM%convert rose: slowviolence.jpg
echo off
for /L %%i in (0,1,1999) do (
set /A NEXT=%%i+1
%IM%convert slowviolence.jpg -rotate 90 -quality 85 slowviolence.jpg
set /A x = ^(%%i/100^)*100
if !x!==%%i (
echo .
) else (
del slowviolence.jpg
)
)
echo on
I'm sorry for the multi-post.
I'm such a beginner with this
I've downloaded ImageMagick. The image of the wizard comes up when I type the covert code into the command prompt. I saved the code as a BAT from my notepad, and tried to call the file. This is what came up