0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.188.118.28


Current Path : /var/www/html/suk_discontinued/libgd-gd-2.2.3/tests/gdtransformaffineboundingbox/
Upload File :
Current File : /var/www/html/suk_discontinued/libgd-gd-2.2.3/tests/gdtransformaffineboundingbox/github_bug_00221.c

#include <stdio.h>
#include <stdlib.h>
#include "gd.h"

#include "gdtest.h"


int main()
{
		gdRect bbox;
		gdRect area;
		double affine[6];
		
		affine[0] = -0.965926;
		affine[1] = -0.258819;
		affine[2] =  0.258819;
		affine[3] =  -0.965926;
		affine[4] =  0.000000;
		affine[5] =  0.000000;
		area.x = 0;
		area.y = 0;
		area.width = 262;
		area.height = 166;
		if (gdTransformAffineBoundingBox(&area, affine, &bbox) != GD_TRUE) {
			return 1;
		}
		if (!(bbox.x ==-253 &&  bbox.y ==-228 && bbox.width == 298 && bbox.height == 230)) {
			return 1;
		}

		return 0;
}