xref: /PHP-7.4/ext/gd/tests/imagestring_basic.phpt (revision 782352c5)
1--TEST--
2Testing imagestring() 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 = imagestring($image, 1, 5, 5, 'String Text', $white);
16
17include_once __DIR__ . '/func.inc';
18test_image_equals_file(__DIR__ . '/imagestring_basic.png', $image);
19?>
20--EXPECT--
21The images are equal.
22