Annotation of embedaddon/php/ext/gd/tests/imagearc_error1.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Testing wrong param passing imagearc() of GD library
                      3: --CREDITS--
                      4: Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
                      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: 
                     13: $image = imagecreatetruecolor(100, 100);
                     14: 
                     15: $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
                     16: 
                     17: //create an arc with white color    
                     18: imagearc($image, 50, 50, 30, 30, 0, 180);
                     19: 
                     20: ob_start();
                     21: imagepng($image);
                     22: $img = ob_get_contents();
                     23: ob_end_clean();
                     24: 
                     25: echo md5(base64_encode($img));
                     26: ?>
                     27: --EXPECTF--
                     28: Warning: imagearc() expects exactly 8 parameters, 7 given in %s on line %d
                     29: abebb25b5a2813cfbf92f1f24365786a

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>