3v4l.org

run code in 300+ PHP versions simultaneously
<?php header('Content-Type: image/png'); $im = imagecreatetruecolor(290, 60); $grey = imagecolorallocate($im, 200, 200, 200); $black = imagecolorallocate($im, 0, 0, 0); imagefilledrectangle($im, 0, 0, 289, 59, $grey); $font = 'seguisym.ttf'; $font = realpath($font); //&#127744; is the unicode html entity for a cyclone. It is under 'Miscellaneous Symbols And Pictographs'. $text = "&#127744; is a cyclone!"; imagettftext($im, 20, 0, 5, 22, $black, $font, $text); //&#9924; is the unicode html entity for a snowman. It is under 'Miscellaneous Symbols'. $text = "&#9924; is a snowman!"; imagettftext($im, 20, 0, 5, 52, $black, $font, $text); imagepng($im); imagedestroy($im);

preferences:
41.92 ms | 402 KiB | 5 Q