Page 1 of 1

[SOLVED]Command Line Testing

Posted: 2012-06-26T09:32:38-07:00
by alexkolb
Hi,

I am trying to use imagemagick as a part of ResourceSpace. I am trying to test imagemagick using the command line-- I have a file named umimage in the imagemagickfolder.
I entered

Code: Select all

convert umimage.jpg umimage.png
and got back

Code: Select all

convert.exe:unable to open image 'umimage.jpg': no such file or directory @ error/blob.c/openBlob/2638.
convert.exe: no images defined 'umiage.png' @ error/convert.c/ConvertImageCommand/3044.
Anyone know what this means or how to go about testing if imagemagick is installed properly?

Re: Command Line Testing

Posted: 2012-06-26T09:37:42-07:00
by Bonzo
I have a file named umimage in the imagemagickfolder.
Looking at your code the image should be in the same folder as the code.

Re: Command Line Testing

Posted: 2012-06-26T09:43:55-07:00
by alexkolb
The problem was I was not properly referencing the location of the file.
I had to enter it's exact location.

Thanks,
Alex