Lines Matching refs:height

61 	unsigned int height;  member
112 result->height = (unsigned int)dim[2] | (((unsigned int)dim[3])<<8); in php_handle_gif()
133 …result->height = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned … in php_handle_psd()
157 result->height = (((unsigned int)dim[ 7]) << 8) + ((unsigned int) dim[ 6]); in php_handle_bmp()
162 …result->height = (((unsigned int)dim[11]) << 24) + (((unsigned int)dim[10]) << 16) + (((unsigne… in php_handle_bmp()
163 result->height = abs((int32_t)result->height); in php_handle_bmp()
259 result->height = (php_swf_get_bits (b, 5 + (3 * bits), bits) - in php_handle_swc()
288 result->height = (php_swf_get_bits (a, 5 + (3 * bits), bits) - in php_handle_swf()
319 …result->height = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned int… in php_handle_png()
490 result->height = php_read2(stream); in php_handle_jpeg()
618 result->height = php_read4(stream); /* Ysiz */ in php_handle_jpc()
792 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; in php_handle_tiff() local
848 height = entry_value; in php_handle_tiff()
853 if ( width && height) { in php_handle_tiff()
856 result->height = height; in php_handle_tiff()
873 short width, height, bits; in php_handle_iff() local
900 height = php_ifd_get16s(a+2, 1); in php_handle_iff()
902 if (width > 0 && height > 0 && bits > 0 && bits < 33) { in php_handle_iff()
905 result->height = height; in php_handle_iff()
930 int i, width = 0, height = 0; in php_get_wbmp() local
968 height = (height << 7) | (i & 0x7f); in php_get_wbmp()
970 if (height > 2048) { in php_get_wbmp()
975 if (!height || !width) { in php_get_wbmp()
981 (*result)->height = height; in php_get_wbmp()
1009 unsigned int width = 0, height = 0; in php_get_xbm() local
1028 if (height) { in php_get_xbm()
1034 height = (unsigned int) value; in php_get_xbm()
1048 if (width && height) { in php_get_xbm()
1052 (*result)->height = height; in php_get_xbm()
1095 result->height = (unsigned int)dim[1]; in php_handle_ico()
1104 if (0 == result->height) in php_handle_ico()
1105 result->height = 256; in php_handle_ico()
1140 result->height = buf[16] + ((buf[17] & 0x3F) << 8); in php_handle_webp()
1144 result->height = (buf[10] >> 6) + (buf[11] << 2) + ((buf[12] & 0xF) << 10) + 1; in php_handle_webp()
1148 result->height = buf[15] + (buf[16] << 8) + (buf[17] << 16) + 1; in php_handle_webp()
1449 add_index_long(return_value, 1, result->height); in php_getimagesize_from_stream()
1451 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()