--TEST--
Testing imagecopymerge() of GD library
--CREDITS--
Cleston Viel Vieira de Sousa <cleston [dot] vs [at] gmail [dot] com>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php 
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php

$des 
imagecreate(120120);
$src imagecreate(100100);

imagecolorallocate($des5050200);
$colorTXT_des imagecolorallocate($des255255255);

imagecolorallocate($src255255255);
$colorTXT_src imagecolorallocate($src0255255);

imagestring($src155,  "A Simple Text"$colorTXT_src);
imagestring($des155,  "Another Simple Text"$colorTXT_des);

var_dump(imagecopymerge($des$src202000505075));


?>
--EXPECTF--
bool(true)