Search found 3 matches

by dmf
2016-12-08T09:22:59-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

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 ...
by dmf
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
by dmf
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 ...