Lines Matching refs:height
107 int $height, argument
113 … $image = $this->resizeImage(image: $image, width: $width, height: $height, fit: $fit);
148 …$watermark = $this->createWatermark(width: $image->width(), height: $image->height(), media_file: …
173 int $height, argument
191 (string) $height,
196 …$closure = function () use ($filesystem, $path, $width, $height, $fit, $add_watermark, $media_file…
198 … $image = $this->resizeImage(image: $image, width: $width, height: $height, fit: $fit);
201 …$watermark = $this->createWatermark(width: $image->width(), height: $image->height(), media_file: …
251 public function createWatermark(int $width, int $height, MediaFile $media_file): ImageInterface argument
255 ->contain(width: $width, height: $height);
322 …protected function resizeImage(ImageInterface $image, int $width, int $height, string $fit): Image… argument
325 'crop' => $image->cover(width: $width, height: $height),
326 'contain' => $image->scale(width: $width, height: $height),