*/ public array $handlers = [ 'gd' => GDHandler::class, 'imagick' => ImageMagickHandler::class, ]; /* |-------------------------------------------------------------------------- | Uploaded images sizes (in px) |-------------------------------------------------------------------------- | The sizes listed below determine the resizing of images when uploaded. */ /** * Podcast cover image sizes * * Uploaded podcast covers are of 1:1 ratio (width and height are the same). * * Size of images linked in the rss feed (should be between 1400 and 3000). Size for ID3 tag cover art (should be * between 300 and 800) * * Array values are as follows: 'name' => [width, height] * * @var array> */ public array $podcastCoverSizes = [ 'tiny' => [ 'width' => 40, 'height' => 40, 'mimetype' => 'image/webp', 'extension' => 'webp', ], 'thumbnail' => [ 'width' => 150, 'height' => 150, 'mimetype' => 'image/webp', 'extension' => 'webp', ], 'medium' => [ 'width' => 320, 'height' => 320, 'mimetype' => 'image/webp', 'extension' => 'webp', ], 'large' => [ 'width' => 1024, 'height' => 1024, 'mimetype' => 'image/webp', 'extension' => 'webp', ], 'feed' => [ 'width' => 1400, 'height' => 1400, ], 'id3' => [ 'width' => 500, 'height' => 500, ], 'og' => [ 'width' => 1200, 'height' => 1200, ], 'federation' => [ 'width' => 400, 'height' => 400, ], 'webmanifest192' => [ 'width' => 192, 'height' => 192, 'mimetype' => 'image/png', 'extension' => 'png', ], 'webmanifest512' => [ 'width' => 512, 'height' => 512, 'mimetype' => 'image/png', 'extension' => 'png', ], ]; /** * Podcast header cover image * * Uploaded podcast header covers are of 3:1 ratio * * @var array> */ public array $podcastBannerSizes = [ 'small' => [ 'width' => 320, 'height' => 128, 'mimetype' => 'image/webp', 'extension' => 'webp', ], 'medium' => [ 'width' => 960, 'height' => 320, 'mimetype' => 'image/webp', 'extension' => 'webp', ], 'federation' => [ 'width' => 1500, 'height' => 500, ], ]; public string $avatarDefaultPath = 'castopod-avatar.jpg'; public string $avatarDefaultMimeType = 'image/jpg'; /** * @var array> */ public array $podcastBannerDefaultPaths = [ 'default' => [ 'path' => 'castopod-banner-pine.jpg', 'mimetype' => 'image/jpeg', ], 'pine' => [ 'path' => 'castopod-banner-pine.jpg', 'mimetype' => 'image/jpeg', ], 'crimson' => [ 'path' => 'castopod-banner-crimson.jpg', 'mimetype' => 'image/jpeg', ], 'amber' => [ 'path' => 'castopod-banner-amber.jpg', 'mimetype' => 'image/jpeg', ], 'lake' => [ 'path' => 'castopod-banner-lake.jpg', 'mimetype' => 'image/jpeg', ], 'jacaranda' => [ 'path' => 'castopod-banner-jacaranda.jpg', 'mimetype' => 'image/jpeg', ], 'onyx' => [ 'path' => 'castopod-banner-onyx.jpg', 'mimetype' => 'image/jpeg', ], ]; public string $podcastBannerDefaultMimeType = 'image/jpeg'; /** * Person image * * Uploaded person images are of 1:1 ratio (width and height are the same). * * Array values are as follows: 'name' => [width, height] * * @var array> */ public array $personAvatarSizes = [ 'federation' => [ 'width' => 400, 'height' => 400, ], 'tiny' => [ 'width' => 40, 'height' => 40, 'mimetype' => 'image/webp', 'extension' => 'webp', ], 'thumbnail' => [ 'width' => 150, 'height' => 150, 'mimetype' => 'image/webp', 'extension' => 'webp', ], 'medium' => [ 'width' => 320, 'height' => 320, 'mimetype' => 'image/webp', 'extension' => 'webp', ], ]; }