Search found 4 matches

by kendsnyder
2013-02-11T16:15:54-07:00
Forum: Users
Topic: How can I get consistent color results?
Replies: 7
Views: 7131

Re: How can I get consistent color results?

I've found using no color profile makes PNGs look the same across all browsers. The `-strip` option discards comments and color profiles, including the default sRGB color profile IM uses. convert -size 32x32 xc:"#f76023" -strip square-stripped.png http://sandbox.kendsnyder.com/IM/square-stripped.png ...
by kendsnyder
2013-02-07T23:25:24-07:00
Forum: Users
Topic: How can I get consistent color results?
Replies: 7
Views: 7131

Re: How can I get consistent color results?

Aha! It's OSX!? So first off, all three of the images I posted give the same pixel enumeration for me on OSX: # ImageMagick pixel enumeration: 32,32,255,srgb 0,0: (247, 96, 35) #F76023 srgb(247,96,35) ... Second, using my Apple Thunderbolt display or my MacBook Pro display, the first two images look ...
by kendsnyder
2013-02-07T15:10:15-07:00
Forum: Users
Topic: How can I get consistent color results?
Replies: 7
Views: 7131

Re: How can I get consistent color results?

No dice. I upgraded to IM 6.8.2-6 on OSX and now I get mostly the same result: convert -size 32x32 xc:"#f76023" square-OSX-6.8.2.png 1) #fa5b31 in Firefox (Same as OSX IM v6.7.7-6) 2) #f46130 in Preview and Safari (Same as Ubuntu IM 6.6.9-7) 3) #f26521 in Chrome (Same as OSX IM v6.7.7-6) 4) #f76023 ...
by kendsnyder
2013-02-07T10:16:31-07:00
Forum: Users
Topic: How can I get consistent color results?
Replies: 7
Views: 7131

How can I get consistent color results?

I'm trying to generate a square 32x32 where every pixel is #f76023. When I run the following on Mac OSX 10.8 with ImageMagick 6.7.7-6 2012-09-18 Q16 convert -size 32x32 xc:"#f76023" -colorspace RGB square.png I use the OSX ColorSnapper to sample colors and square.png looks different in different ...