Page 2 of 2

Re: Convert command from ImageMagick does not work, and saying convert: unable to open image :

Posted: 2017-11-14T21:28:30-07:00
by fmw42
try

Code: Select all

find / -name in.jpg
and

Code: Select all

find / -name in.JPG
You may get lots of permission denied, but it should find the path to the file if it exists.

Re: Convert command from ImageMagick does not work, and saying convert: unable to open image :

Posted: 2017-11-15T22:48:10-07:00
by fmw42
As I mentioned in your other post:

try

Code: Select all

find / -name in.jpg
and

Code: Select all

find / -name in.JPG
You may get lots of permission denied, but it should find the path to the file if it exists.

Re: Convert command from ImageMagick does not work, and saying convert: unable to open image :

Posted: 2017-11-17T17:55:32-07:00
by PleskQuestion
fmw42,

Thanks. I really appreciate your time.

Because of your support, the answer was "/var/www/vhosts/xxxxxx.com/httpdocs/" in order not to receive an error "No such file or directory" in my particular case.

So, like I'm showing in other question, I'm using like below.

[root@server-xxxxxxx-x ~]# mogrify -strip /var/www/vhosts/xxxxxxx.com/httpdocs/upload/save_image/*.jpg

Re: Convert command from ImageMagick does not work, and saying convert: unable to open image :

Posted: 2017-11-17T19:08:25-07:00
by fmw42
Did that work?