Searched refs:threshold (Results 1 – 18 of 18) sorted by relevance
/PHP-8.2/ext/gd/tests/ |
H A D | bug73291.phpt | 2 Bug #73291 (imagecropauto() $threshold differs from external libgd) 17 foreach ([0.1, 0.5, 1.0, 10.0] as $threshold) { 18 $dst = imagecropauto($src, IMG_CROP_THRESHOLD, $threshold, $white);
|
H A D | bug72494.phpt | 17 …gecropauto(): Argument #4 ($color) must be greater than or equal to 0 when using the threshold mode
|
H A D | bug77198_threshold.phpt | 2 Bug #77198 (threshold cropping has insufficient precision)
|
/PHP-8.2/ext/gd/libgd/ |
H A D | gd_crop.c | 29 static int gdColorMatch(gdImagePtr im, int col1, int col2, float threshold); 181 gdImagePtr gdImageCropThreshold(gdImagePtr im, const unsigned int color, const float threshold) in gdImageCropThreshold() argument 196 if (threshold > 100.0) { in gdImageCropThreshold() 211 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold() 225 match = (gdColorMatch(im, color, gdImageGetPixel(im, x, y), threshold)) > 0; in gdImageCropThreshold() 233 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold() 241 match = (gdColorMatch(im, color, gdImageGetPixel(im, x,y), threshold)) > 0; in gdImageCropThreshold() 295 static int gdColorMatch(gdImagePtr im, int col1, int col2, float threshold) in gdColorMatch() argument 303 return (100.0 * dist / 195075) < threshold; in gdColorMatch()
|
H A D | gd.h | 878 gdImagePtr gdImageCropThreshold(gdImagePtr im, const unsigned int color, const float threshold);
|
/PHP-8.2/Zend/tests/ |
H A D | gc_037.phpt | 21 ["threshold"]=> 31 ["threshold"]=>
|
H A D | gh13670_002.phpt | 40 // threshold 50 $defaultThreshold = gc_status()['threshold'];
|
H A D | gh13670_003.phpt | 40 // threshold 50 $defaultThreshold = gc_status()['threshold'];
|
H A D | gh13670_001.phpt | 29 $defaultThreshold = gc_status()['threshold'];
|
H A D | gc_045.phpt | 54 ["threshold"]=>
|
/PHP-8.2/Zend/ |
H A D | zend_gc.h | 28 uint32_t threshold; member
|
H A D | zend_gc.c | 1691 status->threshold = GC_G(gc_threshold); in zend_gc_get_status()
|
H A D | zend_builtin_functions.c | 145 add_assoc_long_ex(return_value, "threshold", sizeof("threshold")-1, (long)status.threshold); in ZEND_FUNCTION()
|
/PHP-8.2/ext/gd/ |
H A D | gd.stub.php | 768 function imagecropauto(GdImage $image, int $mode = IMG_CROP_DEFAULT, float $threshold = 0.5, int $c… argument
|
H A D | gd.c | 3566 double threshold = 0.5f; in PHP_FUNCTION() local 3570 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "O|ldl", &IM, gd_image_ce, &mode, &threshold, &color) =… in PHP_FUNCTION() 3590 im_crop = gdImageCropThreshold(im, color, (float) threshold); in PHP_FUNCTION()
|
H A D | gd_arginfo.h | 539 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, threshold, IS_DOUBLE, 0, "0.5")
|
/PHP-8.2/ext/mbstring/libmbfl/ |
H A D | LICENSE | 257 threshold for this to be true is not precisely defined by law.
|
/PHP-8.2/ext/bcmath/libbcmath/ |
H A D | LICENSE | 260 threshold for this to be true is not precisely defined by law.
|
Completed in 70 milliseconds