compare: image colorspace differs `/tmp/magick-XXikqGAp'.

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
kostdata
Posts: 1
Joined: 2013-09-06T06:40:51-07:00
Authentication code: 6789

compare: image colorspace differs `/tmp/magick-XXikqGAp'.

Post by kostdata »

convert img.jpg \( +clone -colorspace gray \) miff:- | compare -metric PAE - null:

compare: Unexpected end-of-file `/tmp/magick-XXikqGAp': No such file or directory.
compare: image colorspace differs `/tmp/magick-XXikqGAp'.

Version: ImageMagick 6.8.6-9 2013-08-29 Q16
User avatar
glennrp
Posts: 1147
Joined: 2006-04-01T08:16:32-07:00
Location: Maryland 39.26.30N 76.16.01W

Re: compare: image colorspace differs `/tmp/magick-XXikqGAp'

Post by glennrp »

kostdata wrote: compare: Unexpected end-of-file `/tmp/magick-XXikqGAp': No such file or directory.
Maybe you ran out of disk space in /tmp
Set $TMPDIR to point to directory on a disk with more space, if you have one, e.g.,

Code: Select all

mkdir $HOME/temp; TMPDIR=$HOME/temp export TMPDIR
Post Reply