Search found 5 matches

by rain
2015-11-02T04:06:13-07:00
Forum: Users
Topic: Need help with resizing AdobeRGB images for web
Replies: 12
Views: 5382

Re: Need help with resizing AdobeRGB images for web

I cant upgrade it. It's on my web hosting company.
by rain
2015-11-01T15:10:14-07:00
Forum: Users
Topic: Need help with resizing AdobeRGB images for web
Replies: 12
Views: 5382

Re: Need help with resizing AdobeRGB images for web

LinuxVersion: ImageMagick 6.6.0-4 2015-05-28 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2010 ImageMagick Studio LLC
Features: OpenMP

Debian 6.0.7 "squeeze"
by rain
2015-11-01T12:17:38-07:00
Forum: Users
Topic: Need help with resizing AdobeRGB images for web
Replies: 12
Views: 5382

Re: Need help with resizing AdobeRGB images for web

But did you try "identify -verbose" ? it still shows it is Adobe RGB. Also when you open it with gimp it tells you that it Adobe RGB and asks you if you want to convert this. An other notice I made is that when you remove "-verbose" from "identify" then it also thinks that the original file is sRGB ...
by rain
2015-11-01T10:53:00-07:00
Forum: Users
Topic: Need help with resizing AdobeRGB images for web
Replies: 12
Views: 5382

Re: Need help with resizing AdobeRGB images for web

The photos from the camera probably have an embedded AdobeRGB profile. Use "-profile sRGB.icc" to convert the image to sRGB. You can also use an "-intent" setting if you want. Ideally, don't start from a jpeg. How do I exactly do that? convert in.jpg -resize 300x225 -quality 90 -profile sRGB.icc ...
by rain
2015-11-01T04:53:31-07:00
Forum: Users
Topic: Need help with resizing AdobeRGB images for web
Replies: 12
Views: 5382

Need help with resizing AdobeRGB images for web

Hi I am trying to resize my photos to display on my web site. I get Adobe RGB from my camera. But some web browsers does not support it. Therefore I want to convert them to sRGB. Now my question is that how do I do that and keep colors at the same time? My current code is: convert in.jpg -resize ...