I'm running into a weird error with this image: http://php.med.unsw.edu.au/cellbiology/ ... ing_03.jpg
Running display shows the image. Identify doesn't show anything weird, but convert refuses to convert anything:
$ convert --version
Version: ImageMagick 6.7.7-10 2012-11-06 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC
Features: OpenMP
$ convert -scale 50x50 Nuclear_reprogramming_03.jpg
convert.im6: no images defined `Nuclear_reprogramming_03.jpg' @ error/convert.c/ConvertImageCommand/3044.
(The version I'm using is from http://packages.debian.org/wheezy/imagemagick, so I can report this there if it is a problem that has been fixed already.)
Problem converting JPG
Re: Problem converting JPG
Original user with the problem is here: https://www.mediawiki.org/wiki/Thread:P ... 2_problems
Re: Problem converting JPG
You need to specify the destination file for convert, e.g,,
Code: Select all
convert -scale 50x50 Nuclear_reprogramming_03.jpg Nuclear_reprogramming_03_converted.jpg
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Problem converting JPG
Code: Select all
$ convert -scale 50x50 Nuclear_reprogramming_03.jpg
snibgo's IM pages: im.snibgo.com
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Problem converting JPG
correct IM 6 syntax is
convert input -scale WxH output
It is not a good idea to do the scale before your input image
convert input -scale WxH output
It is not a good idea to do the scale before your input image
Re: Problem converting JPG
Agreed. I should have suggestedIt is not a good idea to do the scale before your input image
Code: Select all
convert Nuclear_reprogramming_03.jpg -scale 50x50 Nuclear_reprogramming_03_scaled.jpg
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: Problem converting JPG
IMv7 will complain that scale has no image
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/