3v4l.org

run code in 300+ PHP versions simultaneously
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Naamloos document</title> </head> <body> <?php //Set the Content Type header('Content-type: image/jpeg'); // Create Image From Existing File $jpg_image = imagecreatefromjpeg('http://pookey.co.uk/gallery2/d/1166-4/Sunset.jpg'); // Allocate A Color For The Text $white = imagecolorallocate($jpg_image, 255, 255, 255); // Set Path to Font File $font_path = 'font.TTF'; // Set Text to Be Printed On Image $text = "This is a sunset!"; // Print Text On Image imagettftext($jpg_image, 25, 0, 75, 300, $white, $font_path, $text); // Send Image to Browser imagejpeg($jpg_image); // Clear Memory imagedestroy($jpg_image); ?> </body> </html>
Output for 7.0.20, 7.1.5 - 7.1.20, 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
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Naamloos document</title> </head> <body> Warning: Cannot modify header information - headers already sent by (output started at /in/kPMZ8:1) in /in/kPMZ8 on line 11 Fatal error: Uncaught Error: Call to undefined function imagecreatefromjpeg() in /in/kPMZ8:14 Stack trace: #0 {main} thrown in /in/kPMZ8 on line 14
Process exited with code 255.
Output for 7.0.0 - 7.0.14, 7.1.0
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Naamloos document</title> </head> <body> Warning: Cannot modify header information - headers already sent by (output started at /in/kPMZ8:9) in /in/kPMZ8 on line 11 Fatal error: Uncaught Error: Call to undefined function imagecreatefromjpeg() in /in/kPMZ8:14 Stack trace: #0 {main} thrown in /in/kPMZ8 on line 14
Process exited with code 255.
Output for 5.2.3 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Naamloos document</title> </head> <body> Warning: Cannot modify header information - headers already sent by (output started at /in/kPMZ8:9) in /in/kPMZ8 on line 11 Fatal error: Call to undefined function imagecreatefromjpeg() in /in/kPMZ8 on line 14
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.2
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Naamloos document</title> </head> <body> Fatal error: Call to undefined function imagecreatefromjpeg() in /in/kPMZ8 on line 14
Process exited with code 255.
Output for 4.4.5 - 4.4.9
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Naamloos document</title> </head> <body> Fatal error: Call to undefined function: imagecreatefromjpeg() in /in/kPMZ8 on line 14
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Naamloos document</title> </head> <body> Fatal error: Call to undefined function: imagecreatefromjpeg() in /in/kPMZ8 on line 14
Process exited with code 255.
Output for 4.3.0 - 4.3.1
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Naamloos document</title> </head> <body> Fatal error: Call to undefined function: imagecreatefromjpeg() in /in/kPMZ8 on line 14

preferences:
246.72 ms | 401 KiB | 351 Q