summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-2.1.1/tests/gdimagefilledpolygon/gdimagefilledpolygon3.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2015-01-14 10:59:36 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2015-01-14 10:59:36 +0000
commitaa7bbf0e9b00afeeab12fb092b62976cf24fb439 (patch)
treec18d4ee9d969c2fca65036c7d9194d0961df61a3 /Build/source/libs/gd/libgd-2.1.1/tests/gdimagefilledpolygon/gdimagefilledpolygon3.c
parent51f86fe156c11e441cc74238dc38b99f9576d1a9 (diff)
libgd 2.1.1
git-svn-id: svn://tug.org/texlive/trunk@36054 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/gd/libgd-2.1.1/tests/gdimagefilledpolygon/gdimagefilledpolygon3.c')
-rw-r--r--Build/source/libs/gd/libgd-2.1.1/tests/gdimagefilledpolygon/gdimagefilledpolygon3.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/Build/source/libs/gd/libgd-2.1.1/tests/gdimagefilledpolygon/gdimagefilledpolygon3.c b/Build/source/libs/gd/libgd-2.1.1/tests/gdimagefilledpolygon/gdimagefilledpolygon3.c
new file mode 100644
index 00000000000..0db5c8519e1
--- /dev/null
+++ b/Build/source/libs/gd/libgd-2.1.1/tests/gdimagefilledpolygon/gdimagefilledpolygon3.c
@@ -0,0 +1,35 @@
+#include <stdlib.h>
+#include "gd.h"
+#include "gdhelpers.h"
+#include "gdtest.h"
+
+int
+main(void)
+{
+ gdImagePtr im;
+ int white, black, r;
+ gdPointPtr points;
+
+ im = gdImageCreate(100, 100);
+ if (!im) exit(EXIT_FAILURE);
+ white = gdImageColorAllocate(im, 0xff, 0xff, 0xff);
+ black = gdImageColorAllocate(im, 0, 0, 0);
+ gdImageFilledRectangle(im, 0, 0, 99, 99, white);
+ points = (gdPointPtr)calloc(3, sizeof(gdPoint));
+ if (!points) {
+ gdImageDestroy(im);
+ exit(EXIT_FAILURE);
+ }
+ points[0].x = 10;
+ points[0].y = 10;
+ points[1].x = 50;
+ points[1].y = 70;
+ points[2].x = 90;
+ points[2].y = 30;
+ gdImageFilledPolygon(im, points, 3, black);
+ r = gdAssertImageEqualsToFile(GDTEST_TOP_DIR "/gdimagefilledpolygon/gdimagefilledpolygon3.png", im);
+ free(points);
+ gdImageDestroy(im);
+ if (!r) exit(EXIT_FAILURE);
+ return EXIT_SUCCESS;
+}