Search found 4 matches
- 2012-10-17T05:23:30-07:00
- Forum: Bugs
- Topic: convert -sepia-tone different on win vs. linux
- Replies: 9
- Views: 19037
Re: convert -sepia-tone different on win vs. linux
I checked a few times. And on Windows i actually copied convert.exe from the standalone win version of IM to a new folder and did -version first and then ran the command in command prompt and it worked. Version is indeed 6.6.5.0. Hey guys, Thanks so much for your input. It turns out i had to do ...
- 2012-10-16T04:22:28-07:00
- Forum: Bugs
- Topic: convert -sepia-tone different on win vs. linux
- Replies: 9
- Views: 19037
Re: convert -sepia-tone different on win vs. linux
Hey guys,
Thanks so much for your input. It turns out i had to do
So basically forcing Windows to convert it to RGB.
The sRGB conversation was close but it actually had to be RGB.
Thanks so much for your input. It turns out i had to do
Code: Select all
convert c.jpg -set colorspace RGB -sepia-tone 80% 1.jpg
The sRGB conversation was close but it actually had to be RGB.
- 2012-10-15T01:17:32-07:00
- Forum: Bugs
- Topic: convert -sepia-tone different on win vs. linux
- Replies: 9
- Views: 19037
Re: convert -sepia-tone different on win vs. linux
The original image is not greyscale. See here
Doing convert c.jpg -set colorspace sRGB -sepia-tone 80% 3.jpg gives yet another bad result.
Doing convert c.jpg -set colorspace sRGB -sepia-tone 80% 3.jpg gives yet another bad result.
- 2012-10-12T02:31:21-07:00
- Forum: Bugs
- Topic: convert -sepia-tone different on win vs. linux
- Replies: 9
- Views: 19037
convert -sepia-tone different on win vs. linux
Hi, I have an issue with the 2 images below: the first one is created on Linux , the second one on Windows using the same command , same versions of ImageMagick (6.6.5-0) Tried newer versions of IM and they all seem to provide different results Windows vs. Linux. convert c.jpg -sepia-tone 80% 1.jpg ...