10 lines
217 B
PHP
Raw Normal View History

2023-04-03 21:27:50 +08:00
<?php
declare(strict_types=1);
2023-04-30 15:43:08 +08:00
assert(function_exists('gd_info'));
2023-04-03 21:27:50 +08:00
$info = gd_info();
2023-04-30 15:43:08 +08:00
assert($info['PNG Support'] ?? false);
assert($info['GIF Create Support'] ?? false);
assert($info['GIF Read Support'] ?? false);