summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-2.1.0/tests/gdimagerectangle/bug00003.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2013-06-26 12:09:00 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2013-06-26 12:09:00 +0000
commitdf90ed95f154046518bf7aae7f88715f25a312db (patch)
tree104818c62bab65b2988983110fdca9b35927c5e7 /Build/source/libs/gd/libgd-2.1.0/tests/gdimagerectangle/bug00003.c
parent4e17498848c230539b58d870938a77805039046d (diff)
libgd 2.1.0
git-svn-id: svn://tug.org/texlive/trunk@30952 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/gd/libgd-2.1.0/tests/gdimagerectangle/bug00003.c')
-rw-r--r--Build/source/libs/gd/libgd-2.1.0/tests/gdimagerectangle/bug00003.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/Build/source/libs/gd/libgd-2.1.0/tests/gdimagerectangle/bug00003.c b/Build/source/libs/gd/libgd-2.1.0/tests/gdimagerectangle/bug00003.c
new file mode 100644
index 00000000000..4ee4ddbcb5d
--- /dev/null
+++ b/Build/source/libs/gd/libgd-2.1.0/tests/gdimagerectangle/bug00003.c
@@ -0,0 +1,23 @@
+#include "gd.h"
+#include "gdtest.h"
+
+int main()
+{
+ gdImagePtr im;
+ int c1,c2,c3,c4;
+
+ im = gdImageCreateTrueColor(100,100);
+ gdImageRectangle(im, 2,2, 80,95, 0x50FFFFFF);
+ c1 = gdImageGetTrueColorPixel(im, 2, 2);
+ c2 = gdImageGetTrueColorPixel(im, 80, 95);
+ c3 = gdImageGetTrueColorPixel(im, 80, 2);
+ c4 = gdImageGetTrueColorPixel(im, 2, 95);
+
+ gdImageDestroy(im);
+ if (0x005e5e5e == c1 && 0x005e5e5e == c2 &&
+ 0x005e5e5e == c3 && 0x005e5e5e == c4) {
+ return 0;
+ } else {
+ return 1;
+ }
+}