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
|
#include "gd.h"
#include "gdtest.h"
#define width 50
int main()
{
gdImagePtr im, im2;
int error = 0;
im = gdImageCreateTrueColor(width, width);
gdImageFilledRectangle(im, 0,0, width, width, 0xFF0000);
gdImageColorTransparent(im, 0xFF0000);
gdImageFilledEllipse(im, width/2, width/2, width - 20, width - 10,
0x50FFFFFF);
im2 = gdImageCreateTrueColor(width, width);
gdImageCopyRotated(im2, im, width / 2, width / 2, 0,0, width, width, 60);
if (!gdAssertImageEqualsToFile("gdimagecopyrotated/bug00020_exp.png", im2)) {
error = 1;
}
gdImageDestroy(im2);
gdImageDestroy(im);
return error;
}
|