Buongiorno a tutti! Vi scrivo perchè ho il seguente problema.
Dato un file prova.php, il seguente codice non funziona:
Codice PHP:
<html>
<body>
<?php
header("Content-type: image/jpeg");
$imgPath = 'Oggetto-catch.jpg';
$image = imagecreatefromjpeg($imgPath);
$color = imagecolorallocate($image, 0, 0, 0);
$string = "TEST";
$fontSize = 11;
$x = 10;
$y = 11;
imagestring($image, $fontSize, $x, $y, $string, $color);
imagejpeg($image);
?>
<body>
<html>
Mentre, togliendo i tag <html> e <body>, tutto funziona alla perfezione, ossia scrivendo
Codice PHP:
<?php
header("Content-type: image/jpeg");
$imgPath = 'Oggetto-catch.jpg';
$image = imagecreatefromjpeg($imgPath);
$color = imagecolorallocate($image, 0, 0, 0);
$string = "TEST";
$fontSize = 11;
$x = 10;
$y = 11;
imagestring($image, $fontSize, $x, $y, $string, $color);
imagejpeg($image);
?>
Volevo sapere se tutto ciò è normale e dovuto alle politiche di gestione dei file php di Altervista. Grazie dell'attenzione.