1--TEST-- 2Testing imagearc() of GD library 3--CREDITS-- 4Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br> 5#testfest PHPSP on 2009-06-20 6--SKIPIF-- 7<?php 8if (!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 18imagearc($image, 50, 50, 30, 30, 0, 180, $white); 19 20include_once __DIR__ . '/func.inc'; 21test_image_equals_file(__DIR__ . '/imagearc_basic.png', $image); 22?> 23--EXPECT-- 24The images are equal. 25