Creare imagine php cu fundal din doua culori
Scris: Lun Iul 15, 2013
Cum as putea creea o imagine in php care sa aibe fondul creat din doua culori ( partea de sus sa fie o culoare iar partea de jos sa fie alta culoare ).
Cursuri online, tutoriale, jocuri si anime - gratuite
https://marplo.net/forum/
Cod: Selectaţi tot
<?php
// Create a 160x80 image
$width = 160;
$height = 80;
$im = imagecreatetruecolor($width, $height);
// sets background to red
$red = imagecolorallocate($im, 255, 0, 0);
imagefill($im, 0, 0, $red);
// sets and draw a white rectangle
$white = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, $height/2, $width, $width/2, $white);
// sets and adds a text
$text = 'CoursesWeb.net';
$text_color = imagecolorallocate($im, 0, 1, 255);
imagestring($im, 5, 12, $height/3, $text, $text_color);
// Display directly the image
header('Content-Type: image/png');
imagepng($im);