if ($fileData['size'] > $maxFileSize) {
$img = new Imagick($fileData['tmp_name']);
$img->resizeImage(100, 100, Imagick::FILTER_LANCZOS, 1, TRUE);
if ($fileData['size'] > $maxFileSize) {
throw new Exception(Locale::get('file-too-large'));
}
}