jakos nie wychodzi mi moze podam to co probuje zrobic lepiej mnie zrozumiesz i moze poprawisz to co chce zrobic
Kod
<html>
<head>
</head>
<body>
<table>
<tr>
<td>iop</td>
<td>
<?php
$image = imagecreatetruecolor(300, 300);
$tlo = imagecreatefromjpeg("wykres.jpg");
$img = imagecopy($image, $tlo, 0, 0, 0, 0, 400, 400);
$white = imagecolorallocate($image, 255, 255, 255);
$red = imagecolorallocate($image, 255, 34, 0);
imagefill($tlo, 0, 0, $white);
imageline($tlo, 4, 154, 428, 98, $red);
header("Content-type: image/png");
imagejpeg($tlo);
imagedestroy($tlo);
?>
</td>
</tr>
</table>
</body>
</html>