Lines Matching refs:height

62 	unsigned int height;  member
82 result->height = (unsigned int)dim[2] | (((unsigned int)dim[3])<<8); in php_handle_gif()
103 …result->height = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned … in php_handle_psd()
127 result->height = (((unsigned int)dim[ 7]) << 8) + ((unsigned int) dim[ 6]); in php_handle_bmp()
132 …result->height = (((unsigned int)dim[11]) << 24) + (((unsigned int)dim[10]) << 16) + (((unsigne… in php_handle_bmp()
133 result->height = abs((int32_t)result->height); in php_handle_bmp()
229 result->height = (php_swf_get_bits (b, 5 + (3 * bits), bits) - in php_handle_swc()
258 result->height = (php_swf_get_bits (a, 5 + (3 * bits), bits) - in php_handle_swf()
289 …result->height = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned int… in php_handle_png()
474 result->height = php_read2(stream); in php_handle_jpeg()
602 result->height = php_read4(stream); /* Ysiz */ in php_handle_jpc()
776 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; in php_handle_tiff() local
832 height = entry_value; in php_handle_tiff()
837 if ( width && height) { in php_handle_tiff()
840 result->height = height; in php_handle_tiff()
857 short width, height, bits; in php_handle_iff() local
884 height = php_ifd_get16s(a+2, 1); in php_handle_iff()
886 if (width > 0 && height > 0 && bits > 0 && bits < 33) { in php_handle_iff()
889 result->height = height; in php_handle_iff()
914 int i, width = 0, height = 0; in php_get_wbmp() local
952 height = (height << 7) | (i & 0x7f); in php_get_wbmp()
954 if (height > 2048) { in php_get_wbmp()
959 if (!height || !width) { in php_get_wbmp()
965 (*result)->height = height; in php_get_wbmp()
993 unsigned int width = 0, height = 0; in php_get_xbm() local
1012 if (height) { in php_get_xbm()
1018 height = (unsigned int) value; in php_get_xbm()
1032 if (width && height) { in php_get_xbm()
1036 (*result)->height = height; in php_get_xbm()
1079 result->height = (unsigned int)dim[1]; in php_handle_ico()
1088 if (0 == result->height) in php_handle_ico()
1089 result->height = 256; in php_handle_ico()
1124 result->height = buf[16] + ((buf[17] & 0x3F) << 8); in php_handle_webp()
1128 result->height = (buf[10] >> 6) + (buf[11] << 2) + ((buf[12] & 0xF) << 10) + 1; in php_handle_webp()
1132 result->height = buf[15] + (buf[16] << 8) + (buf[17] << 16) + 1; in php_handle_webp()
1190 result->height = features.height; in php_handle_avif()
1522 add_index_long(return_value, 1, result->height); in php_getimagesize_from_stream()
1524 snprintf(temp, sizeof(temp), "width=\"%d\" height=\"%d\"", result->width, result->height); in php_getimagesize_from_stream()