1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
header("content-type: image/png");
$image = ImageCreate(200, 50);
$background = ImageColorAllocate($image, 255, 255, 255); //255, 255, 255 = White
$size = 3;
$text = 'meineemail@iwo.tl';
$color = ImageColorAllocate($image, 255, 0, 0); //255, 0, 0 = Red
ImageString($image, $size, 3, 15, $text, $color);
ImagePng($image);
ImageDestroy($image);
?>
|