"killed" error message

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.
Post Reply
matteosistisette
Posts: 17
Joined: 2011-10-10T09:04:08-07:00
Authentication code: 8675308

"killed" error message

Post by matteosistisette »

I was cropping a huge image into small pieces with:
convert -crop 128x128 sourceimage.png outputimage.png

After 20 minutes of processing, it ended up with the error message "Killed" (not a word more than that), and no file was output.

"Killed" is not an acceptable error message. "Out of memory", or anything describing the cause of the error.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: "killed" error message

Post by magick »

Killed doesn't come from ImageMagick. Its a daemon on your system that "kills" memory intense applications. Easy fix. Add '-limit area 0' to your command-line. This trades off memory usage for disk usage, see http://www.imagemagick.org/script/architecture.php for a discussion of the pixel cache.
matteosistisette
Posts: 17
Joined: 2011-10-10T09:04:08-07:00
Authentication code: 8675308

Re: "killed" error message

Post by matteosistisette »

Oh I see!!!! Thanks a lot
Post Reply