10 lines
211 B
PHP
Raw Normal View History

2023-04-03 21:27:50 +08:00
<?php
declare(strict_types=1);
$info = gd_info();
2023-04-09 12:11:14 +08:00
// jpeg will be supported later
$true = true; // $info['JPEG Support'] ?? false;
2023-04-03 21:27:50 +08:00
$true = $true ? ($info['PNG Support'] ?? false) : false;
exit($true ? 0 : 1);