function checkImageProcessor() { if ($im = getIM()) { $imagesProcessors['im'] = $im; } $gd = getGDVersion(); switch ($gd) { case 1: // check basic functionality if (checkBasicGD(1)) { $imagesProcessors['gd1'] = 'installed'; } break; case 2: // check basic functionality if (checkBasicGD()) { $imagesProcessors['gd2'] = 'installed'; } break; default: break; } return $imagesProcessors; }
function checkImageProcessor() { if ($im = getIM()) { $imagesProcessors['im'] = $im; } // check basic functionality if (checkBasicGD()) { $imagesProcessors['gd2'] = 'installed'; } return $imagesProcessors; }