/var/www/flurhymez/vendor/spatie/laravel-medialibrary/src/Conversions/ImageGenerators
NameSizeModeActions
Image.php6460644editdlrm
ImageGenerator.php16120644editdlrm
ImageGeneratorFactory.php14220644editdlrm
Pdf.php10460644editdlrm
Svg.php9690644editdlrm
Video.php13900644editdlrm
Webp.php11040644editdlrm
Edit: /var/www/flurhymez/vendor/spatie/laravel-medialibrary/src/Conversions/ImageGenerators/Pdf.php (1046B)
getPdfPageNumber() : 1; (new \Spatie\PdfToImage\Pdf($file))->setPage($pageNumber)->saveImage($imageFile); return $imageFile; } public function requirementsAreInstalled(): bool { if (! class_exists('Imagick')) { return false; } if (! class_exists('\\Spatie\\PdfToImage\\Pdf')) { return false; } return true; } public function supportedExtensions(): Collection { return collect('pdf'); } public function supportedMimeTypes(): Collection { return collect(['application/pdf']); } }