1

Is it possible to run an im4java application without installing ImageMagick-6.7.6-1-Q16-windows-dll.exe?

Duncan Jones
  • 67,400
  • 29
  • 193
  • 254
AnilHoney
  • 259
  • 8
  • 20

1 Answers1

4

The home page explains it reasonably clearly:

im4java is a pure-java interface to the ImageMagick commandline

and

im4java [...] just generates the commandline for the ImageMagick commands and passes the generated line to the selected IM-command (using the java.lang.ProcessBuilder.start()-method).

How would you expect that to work without having the command line?

So to answer the question in the body of your post: no. As im4java is just a wrapper, you've got to have installed ImageMagick, as otherwise there's nothing for it to wrap!

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194