ImageMagick install on Windows 8

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?".
Post Reply
metutel
Posts: 1
Joined: 2014-01-03T07:14:58-07:00
Authentication code: 6789

ImageMagick install on Windows 8

Post by metutel »

Operating System: Windows 8.1
System Type: 64-bit, x64
Version: ImageMagick-6.8.8-1-Q16-x64-dll

I have been trying since yesterday to install ImageMagick as part of my Latexml installation. Please note that I am using Strawberry perl as my command line prompt.

I am able to run most of the setup wizard without any issues, however, when I am asked to do the following:

You have now installed ImageMagick. To test the installation select Command Prompt from the Windows Start menu. Within the window type:
convert wizard: wizard.jpg
convert wizard.jpg win:
and the ImageMagick wizard displays in a window.


I did some research, and I had to use the absolute path names to get it to run (which I think that it did), but the wizard window is nowhere to be found.

Code: Select all

C:\>"C:\Program Files\ImageMagick-6.8.8-Q16\convert.exe" wizard:"C:\Program File
s\ImageMagick-6.8.8-Q16\images\wizard.jpg"
This worked, and I got a long list of directions about the image.

Code: Select all

C:\>"C:\Program Files\ImageMagick-6.8.8-Q16\convert.exe" "C:\Program Files\Image
Magick-6.8.8-Q16\images\wizard.jpg" win:
This appeared to run, but the wizard did not pop up.

Any help would be greatly appreciated.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: ImageMagick install on Windows 8

Post by snibgo »

Don't worry about "win:" or "show:". They don't work on Windows. If you type "wizard.jpg" on the command line it should display the image.

(I don't know why the developers still include this as a confidence test.)
snibgo's IM pages: im.snibgo.com
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: ImageMagick install on Windows 8

Post by magick »

win: and show: works for us under Windows 8.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: ImageMagick install on Windows 8

Post by Bonzo »

Code: Select all

convert wizard: wizard.jpg
convert wizard.jpg win:
Just gives me an "Open with box" on windows 7.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: ImageMagick install on Windows 8

Post by snibgo »

I am on Windows 8.1, IM v6.8.8-0.

I see that delegates has changed so show: and win: now call imdisplay. Running a command window with the IM directory as the first entry in my PATH, the commands ...

Code: Select all

convert logo: l.png
imdisplay
imdisplay l.png
... all work as expected.

But the commands ...

Code: Select all

convert l.png win:
convert logo: win:
convert logo: show:
... pause for about 4 seconds then finish without starting imdisplay.

With "-debug all" I see that they pause after showing:

Code: Select all

  Acquire C:/Users/Alan/AppData/Local/Temp/magick-37049kTQXEGDw9NI
2014-01-03T18:58:41+00:00 0:05.055 1.359u 6.8.8 Policy convert.exe[3704]: policy
.c/IsRightsAuthorized/485/Policy
  Domain: Delegate; rights=Execute; pattern="imdisplay" ...
snibgo's IM pages: im.snibgo.com
Post Reply