Imagick output file with incorrect color

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
vladimircape
Posts: 7
Joined: 2014-07-09T06:15:04-07:00
Authentication code: 6789

Imagick output file with incorrect color

Post by vladimircape »

I wanted to create new image and put other image inside ,and my code is

Code: Select all

convert -size 500x375 xc:'#f4f5f6' 10031.jpg -geometry 300x300+100+100 -composite  out.jpg 2>&1
but in out.jpg the image from 10031.jpg in other color scheme, not the origin, for example black color become inverse
Why ? and how to fix it
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Imagick output file with incorrect color

Post by snibgo »

Perhaps 10031.jpg is CMYK, not sRGB.
snibgo's IM pages: im.snibgo.com
vladimircape
Posts: 7
Joined: 2014-07-09T06:15:04-07:00
Authentication code: 6789

Re: Imagick output file with incorrect color

Post by vladimircape »

Yes you was right.Thansk
Post Reply