/imagick/ |
H A D | php_imagick_macros.h | 24 #define IMAGICK_FREE_MAGICK_MEMORY(value) \ argument 26 if (value) { \ 27 MagickRelinquishMemory(value); \ 28 value = NULL; \
|
H A D | ImagickPixel.stub.php | 57 public function setColorValue(int $color, float $value): bool {} argument 61 * @param mixed $value 69 public function setColorValueQuantum(int $color, IMAGICK_QUANTUM_TYPE $value): bool{} argument
|
H A D | configure-cflags.sh | 16 local value=${!n} 18 if [ "${!i}" == "${value}" ]; then
|
H A D | ImagickPixel_arginfo.h | 194 ZEND_ARG_TYPE_INFO(0, value, IS_DOUBLE, 0) 196 ZEND_ARG_INFO(0, value) 217 ZEND_ARG_TYPE_INFO(0, value, IS_DOUBLE, 0) 219 ZEND_ARG_INFO(0, value) 224 ZEND_ARG_TYPE_INFO(0, value, IS_LONG, 0) 226 ZEND_ARG_INFO(0, value)
|
H A D | imagick_helpers.c | 163 if (value >= 0.0) { in im_round_helper() 165 if (value < 1) { in im_round_helper() 168 return floor(value + 0.5); in im_round_helper() 170 return ceil(value - 0.5); in im_round_helper() 314 double value = 0.0; in php_imagick_zval_to_double_array() local 317 value = Z_DVAL_PP(ppzval); in php_imagick_zval_to_double_array() 328 double_array[i] = value; in php_imagick_zval_to_double_array() 365 im_long value = 0; in php_imagick_zval_to_long_array() local 379 long_array[i] = value; in php_imagick_zval_to_long_array() 417 im_long value = 0; in php_imagick_zval_to_char_array() local [all …]
|
H A D | imagickkernel_class.c | 42 double value; in php_imagickkernelvalues_to_zval() local 64 value = kernel_info->values[count]; in php_imagickkernelvalues_to_zval() 68 if (value != value) { in php_imagickkernelvalues_to_zval() 73 add_next_index_double(p_row, value); in php_imagickkernelvalues_to_zval()
|
H A D | imagick_class.c | 924 char *name, *value; in PHP_METHOD() local 937 if (value) { in PHP_METHOD() 952 char *name, *value; in PHP_METHOD() local 3047 if (!value) { in PHP_METHOD() 3637 zval *value; in PHP_METHOD() local 3650 ZVAL_DEREF(value); in PHP_METHOD() 8563 IM_add_assoc_string (array, key, (char *)(value ? value : "")); 11555 char *key, *value; local 11566 if (value) { 12013 char *key, *value; local [all …]
|
H A D | Imagick.stub.php | 139 public function setImageProperty(string $name, string $value): bool {} argument 413 * @param string $value example "1,0,-0.5,0.5" 416 public function setImageArtifact(string $artifact, string $value): bool {} argument 640 public function setImageAttribute(string $key, string $value): bool {} argument 1196 public function setOption(string $key, string $value): bool {} argument 1275 public static function setRegistry(string $key, string $value): bool {} argument
|
H A D | imagickdraw_class.c | 1246 double value; local 1275 value = zval_get_double(pzval); 1283 value = Z_DVAL(tmp_zval); 1286 matrix.sx = value; 1288 matrix.rx = value; 1290 matrix.ry = value; 1292 matrix.sy = value; 1294 matrix.tx = value; 1296 matrix.ty = value;
|
/imagick/tests/ |
H A D | bug21229.phpt | 16 public function setTestValue($value) { 17 $this->test = $value; 27 $test->setTestValue("test value"); 38 Value: test value
|
H A D | 031_Imagick_affineTransformImage_basic.phpt | 14 function checkAllStatsAreValue($channelStatistics, $value) { 16 if ($channelStatistics[Imagick::CHANNEL_RED]['mean'] != $value) { 17 …"Channel red is wrong " . $channelStatistics[Imagick::CHANNEL_RED]['mean'] . " vs " . $value. "\n"; 19 if ($channelStatistics[Imagick::CHANNEL_GREEN]['mean'] != $value) { 20 …nnel green is wrong " . $channelStatistics[Imagick::CHANNEL_GREEN]['mean'] . " vs " . $value. "\n"; 22 if ($channelStatistics[Imagick::CHANNEL_BLUE]['mean'] != $value) { 23 …hannel blue is wrong " . $channelStatistics[Imagick::CHANNEL_BLUE]['mean'] . " vs " . $value. "\n";
|
H A D | 271_imagick_constants.phpt | 13 foreach ($constants as $key => $value) { 14 $output .= "$key: $value \n";
|
H A D | 259_Imagick_colorPoints_basic.phpt | 11 function im_check($value) { 14 if (abs($value - 0.5) > 0.0000001) { 15 echo "Unexpected value of $value for check $count\n";
|
H A D | 014-setresourcelimit.phpt | 55 foreach ($tests as $resourceType => $value) { 56 Imagick::setResourceLimit($resourceType, $value); 59 if ($actualValue != $value) { 60 echo "Error testing $resourceType, value returned $actualValue is not $value \n";
|
H A D | 151_Imagick_subImageMatch_basic.phpt | 50 foreach ($bestMatch as $key => $value) { 51 echo "$key : $value\n";
|
H A D | 169_ImagickPixel_construct_basic.phpt | 27 "rgba(255, 0, 0, 1.0)", // the same, with an explicit alpha value 29 "rgba(100%, 0%, 0%, 1.0)", // the same, with an explicit alpha value
|
H A D | 253_getHdri.phpt | 21 echo "Unexpected value for Imagick::getHDRIEnabled:\n";
|
H A D | 272_imagick_identifyimagetype.phpt | 19 echo "Unexpected type value. Expecting: ".Imagick::IMGTYPE_PALETTE.", but got $type. \n";
|
H A D | 081_Imagick_getImageHistogram_basic.phpt | 88 foreach ($values as $index => $value) { 89 $draw->line($index, $offset, $index, $offset - ($value * $scale));
|
H A D | 268_ImagickDraw_getDensity_basic.phpt | 34 echo "Density retrieved [$densityGet] is not the value set [$densitySet].";
|
H A D | 242_Tutorial_levelizeImage_basic.phpt | 24 //Add move the black point to it's new value
|
H A D | 058_Imagick_distortImage_Polynomial.phpt | 15 // The 'Order' argument is usually an integer from '1' onward, though a special value
|
H A D | 282_ini_settings_set_falsy_string.phpt | 20 // you can't easily get the actual value being used by an extension, when the input
|
H A D | 145_imagickkernel_coverage.phpt | 54 //Should fail, value instead of second row 63 //Should fail, value instead of second row
|
/imagick/util/ |
H A D | type_check.php | 9 foreach ($constants as $key => $value) {
|