Searched refs:y_size (Results 1 - 1 of 1) sorted by relevance
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 160 ZEND_ARG_INFO(0, y_size) 297 ZEND_ARG_INFO(0, y_size) 1562 /* {{{ proto resource imagecreatetruecolor(int x_size, int y_size) 1566 long x_size, y_size; local 1569 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll", &x_size, &y_size) == FAILURE) { 1573 if (x_size <= 0 || y_size <= 0 || x_size >= INT_MAX || y_size >= INT_MAX) { 1578 im = gdImageCreateTrueColor(x_size, y_size); 2143 /* {{{ proto resource imagecreate(int x_size, int y_size) 2147 long x_size, y_size; local [all...] |
Completed in 7 milliseconds