Install Imagemagick Windows

Sudo apt install imagemagick. To list all available version from the Ubuntu repositories, use the apt list command with the -a flag. Sudo apt list imagemagick -a. And to install a specific version of a package we specify it with the apt install command. For example, to install version 6.9.7.4 you would run the following command.

  • Download and install ImageMagick for Windows. Navigate in your browser to the Downloads area of the website of Imagick and scroll to the Windows zone.
  • Contains the core ImageMagick sources in a file named similarly to ImageMagick-5.5.4.tar.gz, ImageMagick-5.5.4.tar.bz, or ImageMagick-5.5.4.zip. These core sources are sufficient to compile a minimal ImageMagick on a Unix system, or under the Cygwin and MinGW environments for Windows.
Active1 year, 2 months ago

I am trying to install ImageMagick on Windows. What I did is install Windows RailsInstaller created my version and now I need to use ImageMagick but for some reason it doesn't work.

I took the binary source code and install and run it from this page but didn't seem to do the trick http://www.imagemagick.org/script/binary-releases.php#windows

I also try the following http://www.youtube.com/watch?v=gEWAVlNCKhg but it doesn't work

For the first example In cmd all I have to do is the following command to my understand to make it work here what I get

Then i saw this. From the https://github.com/rmagick/rmagick which state it include rmagick but then i run bundle and get this

Thank for any help.

Install Imagemagick Windows Wamp

Jseb

Imagemagick Download Windows

Jseb
1,0344 gold badges17 silver badges38 bronze badges

6 Answers

Here yo go, to install ImageMagick and build the RMagick gem and make it all work.

Follow below steps:

  1. Go here mirror images.
  2. Download ImageMagick of any version except the currently latest release, which has some issues
  3. Install it with options: Add to PATH and development headers. Installation path should not contain spaces.
  4. In the command line type convert -version to check if everything works. It should print something like:

    Version: ImageMagick 6.6.1-10 2010-05-15 Q16 http://www.imagemagick.orgCopyright: Copyright (C) 1999-2010 ImageMagick Studio LLCFeatures: OpenMP

  5. Install the DevKit if you haven't already.

  6. Install the rmagick gem: gem install rmagick --platform=ruby -- --with-opt-lib=c:/ruby192/ImageMagick/lib --with-opt-include=c:/ruby192/ImageMagick/include

(Making sure the paths point to wherever you installed imagemagick)

It should print

And after a few minutes if everything goes right, you should see

And that's it. Just two more links that were helpful: 1 blog and 2 blog if you still can't install

Sumit MunotSumit Munot
3,0581 gold badge24 silver badges48 bronze badges
  • The first one is a path issue. There is a convert.exe that is gettingfound before the ImageMagick one.
  • The second one is because you don't have working build tools.
pguardiariopguardiario
38.5k11 gold badges86 silver badges119 bronze badges

How to install ImageMagick on Windows 8.1, as of 5/1/2017:

Php
  1. take a deep breath

  2. uninstall imagemagick/rmagick/everything that's failed so far

  3. make sure you have the DevKit that the accepted answer linked to

  4. Don't download the current v7 of ImageMagick. I have no idea why, but it doesn't work. Instead download ImageMagick-6.9.8-4-Q16-x86-dll.exe from here

  5. Install, including the headers. Since it's V6, it includes legacy utilities already so you don't have to worry about that. Install into your C: directory so there are no spaces in the path.
  6. Open up your environment variables. You know, System>advanced system settings>environment variables.
  7. Find PATH in system variables, edit and copy and paste the large variable value into a notepad or something so you can read it properly.
  8. Find ImageMagick's path, cut it out and paste it to the front. My PATH starts with 'C:ImageMagick-6.9.8-Q16;...' If it's not there, add it yourself.
  9. Update your PATH with ImageMagick at the front.
  10. You should be all setup, go into command prompt and type 'convert -version'. Rather than a 'Invalid drive specification' result which drove me insane, you should see the current version specifications.
  11. Bobs your uncle, you have ImageMagick!
JoeJoe

There is it better described:http://www.redmine.org/projects/redmine/wiki/HowTo_install_rmagick_gem_on_Windows

ProkopSProkopS

this is the only approach that worked for me:

user1608920user1608920

Install ImageMagick windows binaries from https://sourceforge.net/projects/imagemagick/files/im6-exes/, findout where is it installed

Like

C:Program Files (x86)ImageMagick-6.7.9-Q16

or some other directory, depending upon your system...

And run following commands in command prompt

Replacing

C:Program Files (x86)ImageMagick-6.7.9-Q16

with directory where you actually installed Image Magick

Aleksandar PavićAleksandar Pavić

Not the answer you're looking for? Browse other questions tagged ruby-on-railsrubyruby-on-rails-3imagemagickrmagick or ask your own question.

Comments are closed.