On Thu, Jan 11, 2007 at 11:50:49PM +0100, Philippe Dumont wrote: > I have done : > scanimage -i cnz005.icc --resolution 600 > image.tiff > or > convert -profile cnz005.icc before.tiff after.tiff > But nothing happened and the image was still the same.
You need a viewer that knows how to deal with embedded ICC profiles. If want it to work in all viewers, you need to convert the image to your destination colorspace (you want sRGB): scanimage -i cnz005.icc --resolution 600 > image.tiff AND convert -profile sRGB.icc image.tiff after.tiff http://www.color.org/ -> Resources -> Profiles Daniel
