<?php
$img = imagecreate
(750
, 100
) or
die("Cannot Initialize new GD image stream "); $backgroundcolor = imagecolorallocate ($img, 255, 255, 255);
$orange = imagecolorallocate($img, 252, 102, 4);
$blue = imagecolorallocate($img, 0, 0, 255);
$red = imagecolorallocate($img, 255, 0, 0);
$black = imagecolorallocate($img, 0, 0, 0);
imagecopymerge($img, $imgwzor, 10, 10, 10, 10, 750, 100, 90 );
imagettftext($img, 12, 0, 10, 20, $blue, 'verdana.ttf', "Data: $data godz. $godzina");
imagettftext($img, 26, 0, 20, 60, $orange, 'arial.ttf', "$stan_m");
imagesetthickness ($img,1);
ImageRectangle($img,1,99,749,1,$blue);
?>