> * @since 8.1.0 */ public function getProviders(): array; /** * Does the manager have any providers * @since 8.1.0 */ public function hasProviders(): bool; /** * Returns a preview of a file * * The cache is searched first and if nothing usable was found then a preview is * generated by one of the providers * * @param IPreview::MODE_* $mode * @param string $mimeType To force a given mimetype for the file (files_versions needs this) * @param bool $cacheResult Whether to cache the preview on the filesystem. Default to true. Can be useful to set to false to limit the amount of stored previews. * @return ISimpleFile * @throws NotFoundException * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid) * @since 11.0.0 - \InvalidArgumentException was added in 12.0.0 * @since 32.0.0 - getPreview($cacheResult) added the $cacheResult argument to the signature */ public function getPreview(File $file, int $width = -1, int $height = -1, bool $crop = false, string $mode = IPreview::MODE_FILL, ?string $mimeType = null, bool $cacheResult = true): ISimpleFile; /** * Returns true if the passed mime type is supported * @param string $mimeType A glob * @since 6.0.0 */ public function isMimeSupported(string $mimeType = '*'): bool; /** * Check if a preview can be generated for a file * * @param FileInfo $file * @param string|null $mimeType To force a given mimetype for the file * @since 8.0.0 * @since 32.0.0 - isAvailable($mimeType) added the $mimeType argument to the signature */ public function isAvailable(FileInfo $file, ?string $mimeType = null): bool; /** * Generates previews of a file * * @param array $specifications * @return ISimpleFile the last preview that was generated * @throws NotFoundException * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid) * @since 19.0.0 */ public function generatePreviews(File $file, array $specifications, ?string $mimeType = null): ISimpleFile; }