CMYK format images not displaying properly in IE 7

I am using paperclip plugin in my application for  uploading images. But when I am uploading CMYK format image  then this format image not displaying in IE7 properly.

after some search I got the following solution and it’s working.

have added one line code in “paperclip” pluginn.

Go to the  –  “vendor\plugins\paperclip\lib\paperclip\thumbnail.rb”

On line no.64
Old code : trans = “-resize \”#{scale}\””
New change : trans = “-colorspace RGB -resize \”#{scale}\””
After made this changes then if you uploading any formated image then paperclip change in RGB.This change not affected on image clarity.

One thought on “CMYK format images not displaying properly in IE 7

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.