summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/gd-2.0.35/tests/gdimagefilledrectangle/bug00078.c
blob: 009ab403d4e7b0d0190b198054eba5a30372e844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "gd.h"
#include "gdtest.h"

int main()
{
 	gdImagePtr im;
	int c1,c2,c3,c4,c5;

	im = gdImageCreateTrueColor(100,100);
	gdImageFilledRectangle(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);
	c5 = gdImageGetTrueColorPixel(im, 49, 49);

	if (!(0x005e5e5e == c1 && 0x005e5e5e == c2 &&
	 0x005e5e5e == c3 && 0x005e5e5e == c4)) {
	 	return 1;
	}
	gdImageFilledRectangle(im, 0, 0, 99, 99, 0x0);

	gdImageFilledRectangle(im, 80,95, 2,2, 0x50FFFFFF);
	c1 = gdImageGetTrueColorPixel(im, 2, 2);
	c2 = gdImageGetTrueColorPixel(im, 80, 95);
	c3 = gdImageGetTrueColorPixel(im, 80, 2);
	c4 = gdImageGetTrueColorPixel(im, 2, 95);
	c5 = gdImageGetTrueColorPixel(im, 49, 49);

	if (!(0x005e5e5e == c1 && 0x005e5e5e == c2 &&
	 0x005e5e5e == c3 && 0x005e5e5e == c4)) {
	 	return 1;
	}

	gdImageDestroy(im);
	return 0;
}