fork download
  1. <?php
  2.  
  3. $jpeg_file = "2.jpeg";
  4. // Создаем изображение из JPEG-файла
  5. $img = imagecreatefromjpeg($jpeg_file);
  6. if ($img)
  7. {
  8. // Выводим изображение в браузер с качеством равным 50
  9. header("Content-type: " .image_type_to_mime_type(IMAGETYPE_JPEG));
  10. imagejpeg($img);
  11. }
Runtime error #stdin #stdout #stderr 0.02s 24448KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Call to undefined function imagecreatefromjpeg() in /home/8SFXHQ/prog.php on line 5