From a5f35ef94a4dc5fd0687b4b09b92d18fd080ccc7 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Sat, 8 Feb 2003 08:41:43 +0000 Subject: Add gdImageEllipse Replace gdImageFilledEllipse by a new function (backported from the new phpgd) the new gdImageFilledEllipse fix bug bug #22103 (ellipse part) --- ext/gd/libgd/gd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/gd/libgd/gd.h') diff --git a/ext/gd/libgd/gd.h b/ext/gd/libgd/gd.h index 709b98c10c..4cb381d230 100644 --- a/ext/gd/libgd/gd.h +++ b/ext/gd/libgd/gd.h @@ -420,7 +420,7 @@ void* gdImageGdPtr(gdImagePtr im, int *size); /* Best to free this memory with gdFree(), not free() */ void* gdImageGd2Ptr(gdImagePtr im, int cs, int fmt, int *size); -void gdImageEllipse(gdImagePtr im, int cx, int cy, int w, int h, int color); +void gdImageEllipse(gdImagePtr im, int cx, int cy, int w, int h, int c); /* Style is a bitwise OR ( | operator ) of these. gdArc and gdChord are mutually exclusive; -- cgit v1.2.1