xref: /PHP-5.5/ext/gd/tests/imagechar_basic.phpt (revision db6f5e67)
1--TEST--
2Testing imagechar() of GD library
3--CREDITS--
4Rafael Dohms <rdohms [at] gmail [dot] com>
5#testfest PHPSP on 2009-06-20
6--SKIPIF--
7<?php
8	if (!extension_loaded("gd")) die("skip GD not present");
9?>
10--FILE--
11<?php
12$image = imagecreatetruecolor(180, 30);
13$white = imagecolorallocate($image, 255,255,255);
14
15$result = imagechar($image, 1, 5, 5, 'C', $white);
16
17ob_start();
18imagepng($image, null, 9);
19$img = ob_get_contents();
20ob_end_clean();
21
22echo md5(base64_encode($img));
23?>
24--EXPECT--
25e94962ac28ad03bd4142cb1abe9ef98b
26