Searched refs:gdImageSY (Results 1 – 12 of 12) sorted by relevance
/PHP-8.2/ext/gd/libgd/ |
H A D | testac.c | 82 (int) (gdImageSY (im_in) * scale)); in testDrawing() 96 (int) (gdImageSY (im_in) * scale / 2), in testDrawing() 107 (int) (gdImageSX (im_in) * scale), (int) (gdImageSY (im_in) * scale), in testDrawing() 108 gdImageSX (im_in), gdImageSY (im_in)); in testDrawing()
|
H A D | gd_webp.c | 129 if (overflow2(gdImageSX(im) * 4, gdImageSY(im))) { in gdImageWebpCtx() 133 argb = (uint8_t *)gdMalloc(gdImageSX(im) * 4 * gdImageSY(im)); in gdImageWebpCtx() 138 for (y = 0; y < gdImageSY(im); y++) { in gdImageWebpCtx() 157 out_size = WebPEncodeLosslessRGBA(argb, gdImageSX(im), gdImageSY(im), gdImageSX(im) * 4, &out); in gdImageWebpCtx() 159 out_size = WebPEncodeRGBA(argb, gdImageSX(im), gdImageSY(im), gdImageSX(im) * 4, quality, &out); in gdImageWebpCtx()
|
H A D | gddemo.c | 84 gdImageSX (brush), gdImageSY (brush), in main() 85 gdImageSX (im_in), gdImageSY (im_in)); in main()
|
H A D | gd_crop.c | 82 const int height = gdImageSY(im); in gdImageCropAuto() 184 const int height = gdImageSY(im); in gdImageCropThreshold() 259 const int bl = gdImageGetPixel(im, 0, gdImageSY(im) -1); in gdGuessBackgroundColorFromCorners() 260 const int br = gdImageGetPixel(im, gdImageSX(im) - 1, gdImageSY(im) -1); in gdGuessBackgroundColorFromCorners()
|
H A D | gd_wbmp.c | 108 if ((wbmp = createwbmp (gdImageSX (image), gdImageSY (image), WBMP_WHITE)) == NULL) { in _gdImageWBMPCtx() 115 for (y = 0; y < gdImageSY(image); y++) { in _gdImageWBMPCtx()
|
H A D | webpng.c | 166 gdImageSX (im), gdImageSY (im), in main() 193 maxy = gdImageSY(im); in main()
|
H A D | gd_xbm.c | 201 gdCtxPrintf(out, "#define %s_height %d\n", name, gdImageSY(image)); in gdImageXbmCtx() 210 sy = gdImageSY(image); in gdImageXbmCtx()
|
H A D | gd_avif.c | 511 if (!gdImageSX(im) || !gdImageSY(im)) { in gdImageAvifCtx() 516 if (overflow2(gdImageSX(im), gdImageSY(im))) { in gdImageAvifCtx() 530 avifImage *avifIm = avifImageCreate(gdImageSX(im), gdImageSY(im), 8, subsampling); in gdImageAvifCtx()
|
H A D | gd_interpolation.c | 1167 float dy = (float)gdImageSY(im) / (float)_height; in gdImageScaleBilinearPalette() 1269 float dy = (float)gdImageSY(im) / (float)dst_h; in gdImageScaleBilinearTC() 1367 const int src_h = gdImageSY(src); in gdImageScaleBicubicFixed() 1633 src_area.height = gdImageSY(src); in gdRotatedImageSize() 1645 const int src_h = gdImageSY(src); in gdImageRotateNearestNeighbour() 1702 const int src_h = gdImageSY(src); in gdImageRotateGeneric() 1768 const unsigned int src_h = gdImageSY(src); in gdImageRotateBilinear() 1883 const int src_h = gdImageSY(src); in gdImageRotateBicubicFixed() 2271 area_full.height = gdImageSY(src); in gdTransformAffineGetImage() 2351 || src_region->height < gdImageSY(src)) { in gdTransformAffineCopy() [all …]
|
H A D | gd.c | 850 hy = gdImageSY(im->brush) / 2; in gdImageBrushApply() 852 y2 = y1 + gdImageSY(im->brush); in gdImageBrushApply() 924 srcy = y % gdImageSY(tile); in gdImageTileApply() 960 srcy = y % gdImageSY(im->tile); in gdImageTileGet() 2196 if (y2 >= gdImageSY(im)) { in _gdImageFilledHRectangle() 2197 y2 = gdImageSY(im) - 1; in _gdImageFilledHRectangle() 2240 if (y2 >= gdImageSY(im)) { in _gdImageFilledVRectangle() 2241 y2 = gdImageSY(im) - 1; in _gdImageFilledVRectangle() 2740 if (maxy >= gdImageSY(im)) { in gdImageFilledPolygon() 2741 maxy = gdImageSY(im) - 1; in gdImageFilledPolygon() [all …]
|
H A D | gd.h | 767 #define gdImageSY(im) ((im)->sy) macro
|
/PHP-8.2/ext/gd/ |
H A D | gd.c | 2300 for (y = 0; y < gdImageSY(im); y++) { in PHP_FUNCTION() 3002 RETURN_LONG(gdImageSY(im)); in PHP_FUNCTION() 3628 src_y = gdImageSY(im); in PHP_FUNCTION()
|
Completed in 82 milliseconds