Lines Matching refs:height
61 unsigned int height; member
113 result->height = (unsigned int)dim[2] | (((unsigned int)dim[3])<<8); in php_handle_gif()
134 …result->height = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned … in php_handle_psd()
158 result->height = (((unsigned int)dim[ 7]) << 8) + ((unsigned int) dim[ 6]); in php_handle_bmp()
163 …result->height = (((unsigned int)dim[11]) << 24) + (((unsigned int)dim[10]) << 16) + (((unsigne… in php_handle_bmp()
164 result->height = abs((int32_t)result->height); in php_handle_bmp()
260 result->height = (php_swf_get_bits (b, 5 + (3 * bits), bits) - in php_handle_swc()
289 result->height = (php_swf_get_bits (a, 5 + (3 * bits), bits) - in php_handle_swf()
320 …result->height = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned int… in php_handle_png()
505 result->height = php_read2(stream); in php_handle_jpeg()
633 result->height = php_read4(stream); /* Ysiz */ in php_handle_jpc()
807 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; in php_handle_tiff() local
863 height = entry_value; in php_handle_tiff()
868 if ( width && height) { in php_handle_tiff()
871 result->height = height; in php_handle_tiff()
888 short width, height, bits; in php_handle_iff() local
915 height = php_ifd_get16s(a+2, 1); in php_handle_iff()
917 if (width > 0 && height > 0 && bits > 0 && bits < 33) { in php_handle_iff()
920 result->height = height; in php_handle_iff()
945 int i, width = 0, height = 0; in php_get_wbmp() local
983 height = (height << 7) | (i & 0x7f); in php_get_wbmp()
985 if (height > 2048) { in php_get_wbmp()
990 if (!height || !width) { in php_get_wbmp()
996 (*result)->height = height; in php_get_wbmp()
1024 unsigned int width = 0, height = 0; in php_get_xbm() local
1043 if (height) { in php_get_xbm()
1049 height = (unsigned int) value; in php_get_xbm()
1063 if (width && height) { in php_get_xbm()
1067 (*result)->height = height; in php_get_xbm()
1110 result->height = (unsigned int)dim[1]; in php_handle_ico()
1119 if (0 == result->height) in php_handle_ico()
1120 result->height = 256; in php_handle_ico()
1155 result->height = buf[16] + ((buf[17] & 0x3F) << 8); in php_handle_webp()
1159 result->height = (buf[10] >> 6) + (buf[11] << 2) + ((buf[12] & 0xF) << 10) + 1; in php_handle_webp()
1163 result->height = buf[15] + (buf[16] << 8) + (buf[17] << 16) + 1; in php_handle_webp()
1572 add_index_long(return_value, 1, result->height); in php_getimagesize_from_stream()
1574 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()