Soweit ich das verstanden habe geht es darum ob imagemagick verwendet wird, das geht aber bei mir nicht, hier mal die Zeilen 63 - 75
In meinem Hostingpaket sind max 120M erlaubt, habe mir mal die php.ini angesehen, 8m für Bildupload
default:
$this->ext = 'jpg';
$this->mime = 'image/jpeg';
if(!osc_use_imagick()) {
$bg = imagecreatetruecolor($this->_width, $this->_height);
imagefill($bg, 0, 0, imagecolorallocatealpha($bg, 255, 255, 255, 127)); Zeile 68
imagesavealpha($bg, true);
imagealphablending($bg, TRUE);
imagecopy($bg, $this->im, 0, 0, 0, 0, $this->_width, $this->_height);
imagedestroy($this->im);
$this->im = $bg;
}
break;