Converting TIFF to JPG via Imagick – Terrible Result – PHP
Source image: My Code: $mgck_wnd = new Imagick(); $mgck_wnd->readImageBlob($file); // 1 cmyk2rgb $img_colspc = $mgck_wnd->getImageColorspace(); if ($img_colspc != imagick::COLORSPACE_RGB && $img_colspc != imagick::COLORSPACE_GRAY) { $profiles = $mgck_wnd->getImageProfiles('*', false); // get profiles $has_icc_profile = (array_search('icc', $profiles) !== false); // we're interested…