Files
cavepaintings/ext/transcode/info.php
Michael Yick 6c08ee9675 Revert "Merge tag 'v2.10.6'"
This reverts commit 122ea4ab9e, reversing
changes made to c54a11e250.
2024-02-16 23:06:09 -06:00

22 lines
922 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class TranscodeImageInfo extends ExtensionInfo
{
public const KEY = "transcode";
public string $key = self::KEY;
public string $name = "Transcode Image";
public array $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
public string $license = self::LICENSE_WTFPL;
public string $description = "Allows admins to automatically and manually transcode images.";
public ?string $documentation =
"Can transcode on-demand and automatically on upload. Config screen allows choosing an output format for each of the supported input formats.
Supports GD and ImageMagick. Both support bmp, gif, jpg, png, and webp as inputs, and jpg, png, and lossy webp as outputs.
ImageMagick additionally supports tiff and psd inputs, and webp lossless output.
If and image is unable to be transcoded for any reason, the upload will continue unaffected.";
}