File: text.php

package info (click to toggle)
php-imlib 0.3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 572 kB
  • ctags: 430
  • sloc: ansic: 1,287; php: 626; sh: 94; makefile: 66
file content (22 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

// If you compile php_imlib as a self-contained extension, you'll need to
// load it here.

//dl('imlib.so');

/*
 * This will draw a string of text.  Quite thrilling, I tell you.
 */

Header('Content-type: image/png');

$fnt = imlib_load_font('./ARIAL/25');
$im = imlib_create_image(300,50);
imlib_text_draw($im,$fnt,5,5,'Text String in Arial.',IMLIB_TEXT_TO_RIGHT,
                255,255,255,255);
imlib_dump_image($im);
imlib_free_font($fnt);
imlib_free_image($im);

?>