access to commands
-
- Posts: 3
- Joined: 2016-07-16T19:48:18-07:00
- Authentication code: 1151
access to commands
This should be simple but the solution is eluding me. I am a new user to Imagemagick. I can't access the commands on the windows command line. I installed Imagemagick with the system path, and if I execute "path" it is at the front of my path. But I can't access any of the commands.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: access to commands
What version did you install? If it was v7, did you tick the box to install legacy applications (convert etc)? What commands have you tried? Have you tried "magick"?
snibgo's IM pages: im.snibgo.com
-
- Posts: 3
- Joined: 2016-07-16T19:48:18-07:00
- Authentication code: 1151
Re: access to commands
I installed 7.02-4 Q16. I don't remember ticking anything other than system path. I am trying to use the "convert" command.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: access to commands
If you did not install the (IM 6) legacy code at install, then try
or just
See http://imagemagick.org/script/porting.php#cli
IM 7 is a major upgrade and relatively new. Syntax has changed so that magick replaces convert. Many of the docs were created for IM 6 using convert, e.g. http://www.imagemagick.org/Usage/
Code: Select all
magick convert ....
Code: Select all
magick ...
IM 7 is a major upgrade and relatively new. Syntax has changed so that magick replaces convert. Many of the docs were created for IM 6 using convert, e.g. http://www.imagemagick.org/Usage/
-
- Posts: 3
- Joined: 2016-07-16T19:48:18-07:00
- Authentication code: 1151
Re: access to commands
That did the trick. Thank you very much. I wouldn't have thought to do that....