summaryrefslogtreecommitdiff
path: root/tests/gdimageline/bug00072.c
blob: 72e9fca50208405020dd9e28b39a7340e557f448 (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
#include "gd.h"
#include "gdtest.h"

int main()
{
	gdImagePtr im;
	int error = 0;

	im = gdImageCreateTrueColor(11, 11);
	gdImageFilledRectangle(im, 0, 0, 10, 10, 0xFFFFFF);
	gdImageSetThickness(im, 3);

	gdImageLine(im, 5, 0, 5, 11, 0x000000);
	gdImageLine(im, 0, 5, 11, 5, 0x000000);
	gdImageLine(im, 0, 0, 11, 11, 0x000000);

	gdImageSetThickness(im, 1);

	gdImageLine(im, 5, 0, 5, 11, 0xFF0000);
	gdImageLine(im, 0, 5, 11, 5, 0xFF0000);
	gdImageLine(im, 0, 0, 11, 11, 0xFF0000);

	if (!gdAssertImageEqualsToFile("gdimageline/bug00072_exp.png", im)) {
		error = 1;
	}

	gdImageDestroy(im);

	return error;
}