3v4l.org

run code in 300+ PHP versions simultaneously
<?php header("Content-type: image/jpeg"); $imgPath = 'http://i.imgur.com/yS5hPLa.jpg'; $image = imagecreatefromjpeg($imgPath); $color = imagecolorallocate($image, 255, 255, 255); $string = "meow"; $fontSize = 3; $x = 115; $y = 185; imagestring($image, $fontSize, $x, $y, $string, $color); imagejpeg($image); ?>
Output for 7.0.0 - 7.0.31, 7.1.0 - 7.1.23, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Call to undefined function imagecreatefromjpeg() in /in/v6SgB:4 Stack trace: #0 {main} thrown in /in/v6SgB on line 4
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.38
Fatal error: Call to undefined function imagecreatefromjpeg() in /in/v6SgB on line 4
Process exited with code 255.

preferences:
233.86 ms | 402 KiB | 364 Q