fileName); // $event->fileName contains filesystem full path to file // Some thumbnail operations if(isset($event->fileName)) { $f = explode('.', $event->fileName); $extension = end($f); if($extension != 'pdf' && $extension != 'PDF') { Image::getImagine()->open($event->fileName)->thumbnail(new Box(1024, 1024))->save($event->fileName, ['quality' => 100]); } } } }