Kod
<?php
$image = imagecreatetruecolor(800, 800);
$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);
imagepng($tlo, "wykres.png");
imagedestroy($tlo);
?>
<table border='1'>
<tr>
<td> </td>
<td><img src='wykres.png'></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
$image = imagecreatetruecolor(800, 800);
$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);
imagepng($tlo, "wykres.png");
imagedestroy($tlo);
?>
<table border='1'>
<tr>
<td> </td>
<td><img src='wykres.png'></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>