Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
vanekjar
Posts: 2 Joined: 2014-08-14T01:17:37-07:00
Authentication code: 6789
Post
by vanekjar » 2014-08-18T06:43:39-07:00
When trying to delete profile data from an image the program consumes all the available memory and then is killed by OOM killer.
Code: Select all
convert image_EXIF.jpg +profile "*" output.jpg
Testing image:
https://dl.dropboxusercontent.com/u/155 ... e_EXIF.jpg
Tested in current version 6.8.9-7
It worked correcty in version 6.8.9-3
Last edited by
vanekjar on 2014-08-18T09:37:08-07:00, edited 2 times in total.
fmw42
Posts: 25562 Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA
Post
by fmw42 » 2014-08-18T09:33:25-07:00
convert +profile "*" image_EXIF.jpg
Bad syntax. No output image. Nevertheless, this does not complete for me on IM 6.8.9.6 Q16 Mac OSX
Code: Select all
convert image_EXIF.jpg +profile "*" test.jpg
But this works just fine.
Code: Select all
convert -define profile:skip="*" image_EXIF.jpg test.jpg
So does this.
Code: Select all
convert image_EXIF.jpg -strip test.jpg
dlemstra
Posts: 1570 Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:
Post
by dlemstra » 2014-08-22T09:54:26-07:00
I just committed a patch to fix this. This will be available in ImageMagick 6.8.9-8 Beta tomorrow.
acmeinc
Posts: 1 Joined: 2014-08-26T12:23:13-07:00
Authentication code: 6789
Post
by acmeinc » 2014-08-26T12:28:21-07:00
dlemstra wrote: I just committed a patch to fix this. This will be available in ImageMagick 6.8.9-8 Beta tomorrow.
Could you please post the Revision ID's associated with this change?
Edit: Looks like it may be
http://trac.imagemagick.org/changeset/16359 actually.
cookie
Posts: 7 Joined: 2014-08-25T07:15:07-07:00
Authentication code: 6789
Post
by cookie » 2014-08-27T05:04:27-07:00
you can use
instead. I had the same problem.
enobe.de
Posts: 2 Joined: 2014-08-27T12:19:35-07:00
Authentication code: 6789
Post
by enobe.de » 2014-08-27T12:33:46-07:00
Same issue here.
MacOSX 10.9; ImageMagick @6.8.9-7_0+x11 installed via macports.
For PNG and JPG files including EXIF meta data, I need to strip meta data, using 'mogrify -strip file.ext' to get convert to work, without crash.
My usecase: Web-CMS TYPO3 is set to use imagemagick to convert/scale images. If I running CMS installation with latest ImageMagick 6.8.9-7, any changes for size of existing images - which includes EXIF meta data - ends up in a memory-crash for hole operating-system.
fmw42
Posts: 25562 Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA
Post
by fmw42 » 2014-08-27T13:07:49-07:00
You need IM 6.8.9.8 beta to get +profile working again as per the note above from dlemstra.
enobe.de
Posts: 2 Joined: 2014-08-27T12:19:35-07:00
Authentication code: 6789
Post
by enobe.de » 2014-08-28T05:55:58-07:00
THX. Current IM 6.8.9.8 beta solves the problem.
Wasn't easy to install, using macports.