I installed GMagic first. v 1.1.11 q16
as I wanted some simple graphics. lines etc.
Then I installed RMagic 2.3.0
require 'rubygems'
require 'RMagick'
when executed results in a window saying:
The procedure entry point EncipherImage could not be located in the
dynamic link library CORE_RL_magic_.dll
Then txt to the console says:
c:/Program Files
(x86)/ruby/gems/1.8/gems/rmagick-2.3.0-x86-mswin32/ext/RMagick2.so:
127: The specified procedure could not be found.
.... etc
So, where am I going wrong?
Probably by installing an ImageMagick fork. From a superficial
eyeballing of GraphicsMagick (which tells me it was forked off of
ImageMagick 5.5.2), you get the issue that RMagick cannot use the DLL
provided by your installation of GMagick. (Oh the joyful world of forks..)
Anyway, to solve your question / issue:
The RMagick FAQ says to use the mswin32 gem (which, at least the last
time I had it installed, sort-of breaks RubyGems, but I'm too lazy to
file a bug, let alone find out if it is one), which comes with a bundled
ImageMagick that you have to use.
I installed GMagic first. v 1.1.11 q16
as I wanted some simple graphics. lines etc.
Then I installed RMagic 2.3.0
require 'rubygems'
require 'RMagick'
when executed results in a window saying:
The procedure entry point EncipherImage could not be located in the
dynamic link library CORE_RL_magic_.dll
Then txt to the console says:
c:/Program Files
(x86)/ruby/gems/1.8/gems/rmagick-2.3.0-x86-mswin32/ext/RMagick2.so:
127: The specified procedure could not be found.
.... etc
So, where am I going wrong?
Probably by installing an ImageMagick fork. From a superficial
eyeballing of GraphicsMagick (which tells me it was forked off of
ImageMagick 5.5.2), you get the issue that RMagick cannot use the DLL
provided by your installation of GMagick. (Oh the joyful world of forks..)
Anyway, to solve your question / issue:
The RMagick FAQ says to use the mswin32 gem (which, at least the last
time I had it installed, sort-of breaks RubyGems, but I'm too lazy to
file a bug, let alone find out if it is one), which comes with a bundled
ImageMagick that you have to use.