Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 32) sorted by relevance

12

/imagick/
H A Dphp_imagick_macros.h24 #define IMAGICK_FREE_MAGICK_MEMORY(value) \ argument
26 if (value) { \
27 MagickRelinquishMemory(value); \
28 value = NULL; \
H A DImagickPixel.stub.php57 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 Dconfigure-cflags.sh16 local value=${!n}
18 if [ "${!i}" == "${value}" ]; then
H A DImagickPixel_arginfo.h194 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 Dimagick_helpers.c163 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 Dimagickkernel_class.c42 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 Dimagick_class.c924 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 DImagick.stub.php139 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 Dimagickdraw_class.c1246 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 Dbug21229.phpt16 public function setTestValue($value) {
17 $this->test = $value;
27 $test->setTestValue("test value");
38 Value: test value
H A D031_Imagick_affineTransformImage_basic.phpt14 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 D271_imagick_constants.phpt13 foreach ($constants as $key => $value) {
14 $output .= "$key: $value \n";
H A D259_Imagick_colorPoints_basic.phpt11 function im_check($value) {
14 if (abs($value - 0.5) > 0.0000001) {
15 echo "Unexpected value of $value for check $count\n";
H A D014-setresourcelimit.phpt55 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 D151_Imagick_subImageMatch_basic.phpt50 foreach ($bestMatch as $key => $value) {
51 echo "$key : $value\n";
H A D169_ImagickPixel_construct_basic.phpt27 "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 D253_getHdri.phpt21 echo "Unexpected value for Imagick::getHDRIEnabled:\n";
H A D272_imagick_identifyimagetype.phpt19 echo "Unexpected type value. Expecting: ".Imagick::IMGTYPE_PALETTE.", but got $type. \n";
H A D081_Imagick_getImageHistogram_basic.phpt88 foreach ($values as $index => $value) {
89 $draw->line($index, $offset, $index, $offset - ($value * $scale));
H A D268_ImagickDraw_getDensity_basic.phpt34 echo "Density retrieved [$densityGet] is not the value set [$densitySet].";
H A D242_Tutorial_levelizeImage_basic.phpt24 //Add move the black point to it's new value
H A D058_Imagick_distortImage_Polynomial.phpt15 // The 'Order' argument is usually an integer from '1' onward, though a special value
H A D282_ini_settings_set_falsy_string.phpt20 // you can't easily get the actual value being used by an extension, when the input
H A D145_imagickkernel_coverage.phpt54 //Should fail, value instead of second row
63 //Should fail, value instead of second row
/imagick/util/
H A Dtype_check.php9 foreach ($constants as $key => $value) {

Completed in 119 milliseconds

12