From 3c8140d97bb476bf98b122026baf0b83b72fed4d Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Fri, 18 May 2001 20:52:40 +0000 Subject: [PATCH] @ Added the IMG_ARC_ROUNDED option for the ImageFilledArc() function, which @ specified that the drawn curve should be rounded. (Sterling) --- ext/gd/gd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 72578e5a5a..df599adb6a 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -239,6 +239,7 @@ PHP_MINIT_FUNCTION(gd) #endif #if HAVE_LIBGD20 /* for imagefilledarc */ + REGISTER_LONG_CONSTANT("IMG_ARC_ROUNDED", gdArc, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("IMG_ARC_PIE", gdPie, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("IMG_ARC_CHORD", gdChord, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("IMG_ARC_NOFILL", gdNoFill, CONST_CS | CONST_PERSISTENT); -- 2.40.0