The problem is that those images are about 35Ko and they can be about 5Ko.
It's very important for me to reduce the size (Ko) of my images.
So, I tried to use 2 solutions with the convert command to remove the profile :
Code: Select all
convert -strip 08_350_A.jpg 08_350_A_bis3.jpg
Code: Select all
convert -profile "*" 08_350_A.jpg 08_350_A_bis3.jpg
But colors are a little bit different from the orginal picture, it seems to be lighter and colors are fader.
Do you know how can I keep the good colors with this size ?
I tried to add -contrast option, but it's still not exactly what I want. I don't want to keep exact colors, but colors quite near from the original.
Thank you