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
|
#include "gd.h"
#include "gdtest.h"
int main()
{
gdImagePtr im;
const char *exp = "bug00072_exp.png";
int error = 0;
char path[1024];
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);
sprintf(path, "%s/gdimageline/%s", GDTEST_TOP_DIR, exp);
if (!gdAssertImageEqualsToFile(path, im)) {
error = 1;
}
gdImageDestroy(im);
return error;
}
|