1--TEST-- 2Testing imagelayereffect() 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 if (!GD_BUNDLED) die('skip function only available in bundled, external GD detected'); 10?> 11--FILE-- 12<?php 13$image = imagecreatetruecolor(180, 30); 14 15$layer = imagelayereffect($image, IMG_EFFECT_REPLACE); 16var_dump((bool) $layer); 17 18include_once __DIR__ . '/func.inc'; 19test_image_equals_file(__DIR__ . '/imagelayereffect_basic.png', $image); 20?> 21--EXPECT-- 22bool(true) 23The images are equal. 24