profileimage() not work
Posted: 2014-04-04T23:52:55-07:00
I just traced the error from php and seems the function "profileimage" is not available. Is it already deprecated ? Thanks in advance.
Code: Select all
$photo = new Imagick("123.jpg");
$photo->stripImage ();
//echo $photo->getImageColorspace();
//$icc_cmyk = file_get_contents('USWebUncoated.icc');
//$photo->setImageProfile('icc', $icc_cmyk);
$icc_rgb = file_get_contents('sRGB_v4_ICC_preference.icc');
$photo->profileImage('icc', $icc_rgb);
//$photo->setImageProfile('icc', $icc_rgb);
$photo->stripImage ();
//$photo->setImageColorspace(Imagick::COLORSPACE_SRGB);
$photo->writeImage("123gb.jpg");
echo "<br/>";
echo $photo->getImageColorspace();
$photo->destroy();