function remapImage($image_path, $dither_type) { $imagick = new \Imagick(realpath($image_path)); $palette = new \Imagick(realpath("images/NetscapeWebSafeColours.gif")); $imagick->remapImage($palette, $dither_type); header("Content-Type: image/png"); echo $imagick->getImageBlob(); }