summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/tests/xbm/github_bug_109.c
blob: c0b50a8f0d4162e481701ef7b68f788de6b84a0f (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
/**
 * Test reading of XBM images with a width that is not a multiple of 8
 *
 * We're reading such an XBM image, and check that we got what we've expected,
 * instead of an error message.
 *
 * See also <https://github.com/libgd/libgd/issues/109>.
 */


#include "gd.h"
#include "gdtest.h"


int main()
{
    gdImagePtr im;
    FILE *fp;
    char *path;

    fp = gdTestFileOpen2("xbm", "github_bug_109.xbm");
    im = gdImageCreateFromXbm(fp);
    fclose(fp);
    gdTestAssert(im != NULL);
    gdTestAssert(gdImageGetTrueColorPixel(im, 0, 0) == 0);
    gdTestAssert(gdImageGetTrueColorPixel(im, 0, 1) == 0xffffff);

    path = gdTestFilePath2("xbm", "github_bug_109_exp.png");
    gdAssertImageEqualsToFile(path, im);
    gdFree(path);

    gdImageDestroy(im);

    return gdNumFailures();
}