You are a genius, 
$image->transformImageColorspace(13); is not required 
This work perfectly simply : 
 $image = new Imagick($chemin_image);
 // Essayer de mettre en SRGB si ce n'est pas le cas
 $icc_srgb = file_get_contents('../../admin-cache/profil_icc/sRGB_v4_ICC_preference.icc');
 $image ...
					Search found 3 matches
- 2016-12-08T09:22:59-07:00
- Forum: IMagick
- Topic: How properly convert created Image with GD to sRGB
- Replies: 4
- Views: 18496
- 2016-12-08T08:59:53-07:00
- Forum: IMagick
- Topic: How properly convert created Image with GD to sRGB
- Replies: 4
- Views: 18496
Re: How properly convert created Image with GD to sRGB
Ok, that same a little better, but still not as the original : 
http://regex.info/exif.cgi?dummy=on&img ... test20.jpg
					http://regex.info/exif.cgi?dummy=on&img ... test20.jpg
- 2016-12-08T08:21:03-07:00
- Forum: IMagick
- Topic: How properly convert created Image with GD to sRGB
- Replies: 4
- Views: 18496
How properly convert created Image with GD to sRGB
I have to work with an image with PHP GD. The problem is when I copy the original picture, the colors are not the same.
My original Picture :
http://regex.info/exif.cgi?imgurl=https%3A%2F%2Fdonnemoifaim.fr%2Fimgs%2Falsacreations%2Fphoto_acceuil_3.jpg
People told me to convert my jpg into sRGB ...
					My original Picture :
http://regex.info/exif.cgi?imgurl=https%3A%2F%2Fdonnemoifaim.fr%2Fimgs%2Falsacreations%2Fphoto_acceuil_3.jpg
People told me to convert my jpg into sRGB ...