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

Duncan Jones
- 67,400
- 29
- 193
- 254

AnilHoney
- 259
- 8
- 20
1 Answers
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
-
@DuncanJones: I was answering the question in the title more than the question in the body. Will make it clearer. – Jon Skeet Nov 17 '12 at 15:18
-
It wasn't a complaint about your answer (I gave you a +1). I was being mildly flippant to the original poster... – Duncan Jones Nov 17 '12 at 15:19
-
@DuncanJones: I suspected that might be the case - but the clarification certainly won't hurt :) – Jon Skeet Nov 17 '12 at 15:20