blob: 2f1ee47aafa8825edc166da98ccf5dc0b459cf9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--TEST--
Testing imagelayereffect() of GD library
--CREDITS--
Rafael Dohms <rdohms [at] gmail [dot] com>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php
if (!extension_loaded("gd")) die("skip GD not present");
if (!GD_BUNDLED) die('skip function only available in bundled, external GD detected');
?>
--FILE--
<?php
$image = imagecreatetruecolor(180, 30);
$layer = imagelayereffect($image, IMG_EFFECT_REPLACE);
if ($layer){
ob_start();
imagegd($image);
$img = ob_get_contents();
ob_end_clean();
}
echo md5(base64_encode($img));
?>
--EXPECT--
da884f488a851e0267a316ad232aee86
|