Nette\Http\FileUpload::getImageSize PHP Метод

getImageSize() публичный Метод

Returns the dimensions of an uploaded image as array.
public getImageSize ( ) : array | null
Результат array | null
    public function getImageSize()
    {
        return $this->isOk() ? @getimagesize($this->tmpName) : NULL;
        // @ - files smaller than 12 bytes causes read error
    }

Usage Example

Пример #1
0
 public function __construct(FileUpload $file)
 {
     if (!$file->isImage()) {
         throw new NotImageUploadedException();
     }
     $this->id = Uuid::uuid4();
     $pathInfo = pathinfo($file->getSanitizedName());
     if (!isset($pathInfo['extension'])) {
         throw new FileNameException('Filename must have extension');
     }
     $this->extension = $pathInfo['extension'];
     $this->originalName = $pathInfo['filename'];
     $imgSize = $file->getImageSize();
     $this->width = $imgSize[0];
     $this->height = $imgSize[1];
     $this->fileSize = $file->getSize();
     $this->uploadedAt = new \DateTime('now');
 }