Searched refs:src_width (Results 1 – 4 of 4) sorted by relevance
/PHP-8.0/ext/gd/tests/ |
H A D | gh8848.phpt | 30 imagecopyresized(): Argument #9 ($src_width) must be greater than 0
|
/PHP-8.0/ext/gd/ |
H A D | gd.stub.php | 45 …t $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height… argument 202 …dImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height… argument 204 …dImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height… argument 206 …dImage $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_width, int $src_height… argument 208 …t $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height… argument
|
H A D | gd_arginfo.h | 105 ZEND_ARG_TYPE_INFO(0, src_width, IS_LONG, 0) 428 ZEND_ARG_TYPE_INFO(0, src_width, IS_LONG, 0) 439 ZEND_ARG_TYPE_INFO(0, src_width, IS_LONG, 0)
|
/PHP-8.0/ext/gd/libgd/ |
H A D | gd_interpolation.c | 933 static inline void _gdScaleRow(gdImagePtr pSrc, unsigned int src_width, gdImagePtr dst, unsigned i… in _gdScaleRow() argument 957 static inline int _gdScaleHoriz(gdImagePtr pSrc, unsigned int src_width, unsigned int src_height, g… in _gdScaleHoriz() argument 963 if (dst_width == src_width) { in _gdScaleHoriz() 966 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleHoriz() 970 …contrib = _gdContributionsCalc(dst_width, src_width, (double)dst_width / (double)src_width, pSrc->… in _gdScaleHoriz() 976 _gdScaleRow(pSrc, src_width, pDst, dst_width, u, contrib); in _gdScaleHoriz() 982 static inline void _gdScaleCol (gdImagePtr pSrc, unsigned int src_width, gdImagePtr pRes, unsigned… in _gdScaleCol() argument 1013 memcpy(pDst->tpixels[y], pSrc->tpixels[y], src_width); in _gdScaleVert() 1023 _gdScaleCol(pSrc, src_width, pDst, dst_width, dst_height, u, contrib); in _gdScaleVert() 1029 gdImagePtr gdImageScaleTwoPass(const gdImagePtr src, const unsigned int src_width, const unsigned i… in gdImageScaleTwoPass() argument [all …]
|
Completed in 14 milliseconds