summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/tests/gdimagescale/bug00329.c
blob: 67a156188796aca0957f55f159db89630f45bdec (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
39
40
41
42
43
44
45
46
47
48
49
50
/**
 * Regression test for <https://github.com/libgd/libgd/issues/329>
 *
 * We're testing that for truecolor as well as palette images after
 * GD_BILINEAR_FIXED scaling the corner pixels of the scaled image have the
 * expected color.
 */

#include <string.h>
#include "gd.h"
#include "gdtest.h"

static void test(const char *mode)
{
	gdImagePtr src, dst;
	int expected, actual;

	if (strcmp(mode, "palette")) {
		src = gdImageCreateTrueColor(100, 100);
		expected = gdTrueColorAlpha(255, 255, 255, gdAlphaOpaque);
		gdImageFilledRectangle(src, 0,0, 99,99, expected);
	} else {
		src = gdImageCreate(100, 100);
		gdImageColorAllocate(src, 255, 255, 255);
		expected = gdImageGetTrueColorPixel(src, 49, 49);
	}

	gdImageSetInterpolationMethod(src, GD_BILINEAR_FIXED);
	dst = gdImageScale(src, 200, 200);

	actual = gdImageGetPixel(dst, 0, 0);
	gdTestAssertMsg(actual == expected, "%s: wrong color; expected %x, but got %x", mode, expected, actual);
	actual = gdImageGetPixel(dst, 0, 199);
	gdTestAssertMsg(actual == expected, "%s: wrong color; expected %x, but got %x", mode, expected, actual);
	actual = gdImageGetPixel(dst, 199, 199);
	gdTestAssertMsg(actual == expected, "%s: wrong color; expected %x, but got %x", mode, expected, actual);
	actual = gdImageGetPixel(dst, 199, 0);
	gdTestAssertMsg(actual == expected, "%s: wrong color; expected %x, but got %x", mode, expected, actual);

	gdImageDestroy(src);
	gdImageDestroy(dst);
}

int main()
{
	test("palette");
	test("truecolor");

	return gdNumFailures();
}