Home » » imagestring

imagestring

Written By 1 on Sunday, September 30, 2012 | 7:19 PM

bool imagestring ( resource $image , int $font , int $x , int $y , string $string , int $color )

Draw a string horizontally

Draws a string at the given coordinates.


<?php
// Create a 100*30 image
$im imagecreate(10030);

// White background and blue text
$bg imagecolorallocate($im255255255);
$textcolor imagecolorallocate($im00255);

// Write the string at the top left
imagestring($im500'Hello world!'$textcolor);

// Output the image
header('Content-type: image/png');

imagepng($im);
imagedestroy($im);
?>


VideoTutorial 29 del Curso de PHP POO

0 Comment:

Post a Comment