temp: check GD availability

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-10 17:17:11 +02:00
parent caf0ce8aa2
commit 9797fda7b7

6
gdcheck.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
echo "GD: " . (extension_loaded('gd') ? 'KYLLÄ' : 'EI') . "\n";
echo "Imagick: " . (extension_loaded('imagick') ? 'KYLLÄ' : 'EI') . "\n";
if (extension_loaded('gd')) {
echo "GD info: " . json_encode(gd_info()) . "\n";
}