Home
last modified time | relevance | path

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

/imagick/
H A Dimagick_file.c100 file->type = ImagickUndefinedType; in php_imagick_file_init()
124 file->type = ImagickUri; in php_imagick_file_init()
131 file->type = ImagickFile; in php_imagick_file_init()
172 if (type == ImagickReadImage) { in php_imagick_read_image_using_imagemagick()
187 } else if (type == ImagickPingImage){ in php_imagick_read_image_using_imagemagick()
230 if (type == ImagickReadImage) { in php_imagick_read_image_using_php_streams()
273 if (file->type == ImagickFile) { in php_imagick_read_file()
281 if (file->type == ImagickUri) { in php_imagick_read_file()
293 if (file->type == ImagickFile) { in php_imagick_write_file()
299 if (type == ImagickWriteImage) { in php_imagick_write_file()
[all …]
H A Dphp_imagick_file.h35 ImagickFileType type; member
68 …(php_imagick_object *intern, struct php_imagick_file_t *file, ImagickOperationType type TSRMLS_DC);
71 …ick_object *intern, struct php_imagick_file_t *file, ImagickOperationType type, zend_bool adjoin T…
74 …tream_handler(php_imagick_object *intern, php_stream *stream, ImagickOperationType type TSRMLS_DC);
H A Dphp_imagemagick_version_defs.h44 MagickWand *wand, const PixelMask type, const MagickWand *clip_mask
78 MagickWand *wand, const PixelMask type, const MagickWand *clip_mask
H A Dimagick.c3360 ret = std_hnd->has_property(object, member, type, cache_slot TSRMLS_CC);
3365 retval = std_hnd->read_property(object, member, type, cache_slot, rv TSRMLS_CC);
3432 ret = std_hnd->has_property(object, member, type, cache_slot TSRMLS_CC);
3437 retval = std_hnd->read_property(object, member, type, cache_slot, rv TSRMLS_CC);
3490 static zval *php_imagick_read_property(zval *object, zval *member, int type TSRMLS_DC)
3517 retval = std_hnd->read_property(object, member, type TSRMLS_CC);
3519 retval = std_hnd->read_property(object, member, type, key TSRMLS_CC);
3753 (void)type;
3984 (void)type;
4010 (void)type;
[all …]
H A Dphp_imagick_helpers.h86 void php_imagick_throw_exception (php_imagick_class_type_t type, const char *description TSRMLS_DC);
H A Dshim_im6_to_im7.h142 const ChannelType channel,const StatisticType type,const size_t width,
H A DImagick.stub.php1173 public static function getResource(int $type): int {} argument
1175 public static function getResourceLimit(int $type): int {} argument
1200 public static function setResourceLimit(int $type, int $limit): bool {} argument
1261 int $type, argument
H A Dimagickkernel_class.c578 static void imagick_fiddle_with_geometry_info(ssize_t type, GeometryFlags flags, GeometryInfo *geom… in imagick_fiddle_with_geometry_info() argument
581 switch( type ) { in imagick_fiddle_with_geometry_info()
H A Dshim_im6_to_im7.c821 const ChannelType channel,const StatisticType type,const size_t width, in MagickStatisticImageChannel() argument
830 status = MagickStatisticImage(wand, type, width, height); in MagickStatisticImageChannel()
H A Dimagick_helpers.c670 void php_imagick_throw_exception (php_imagick_class_type_t type, const char *description TSRMLS_DC) in php_imagick_throw_exception() argument
675 switch (type) { in php_imagick_throw_exception()
H A DImagick_arginfo.h4680 ZEND_ARG_TYPE_INFO(0, type, IS_LONG, 0)
4682 ZEND_ARG_INFO(0, type)
4738 ZEND_ARG_TYPE_INFO(0, type, IS_LONG, 0)
4740 ZEND_ARG_INFO(0, type)
4910 ZEND_ARG_TYPE_INFO(0, type, IS_LONG, 0)
4912 ZEND_ARG_INFO(0, type)
H A DChangeLog197 * wrong type for zend_parse_parameters.
408 - Added mime type to identifyImage
729 - Fixed wrong exception type in Imagick::setSamplingFactors
H A Dimagick_class.c12146 im_long type; local
12150 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ld", &type, &limit) == FAILURE) {
12154 status = MagickSetResourceLimit(type, (MagickSizeType)limit);
12260 im_long type; local
12264 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &type) == FAILURE) {
12269 status = MagickSetType(intern->magick_wand, type);
12499 im_long type; local
12503 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll|l", &type, &width, &height, &channel) ==…
12511 status = MagickStatisticImageChannel(intern->magick_wand, channel, type, width, height);
/imagick/util/
H A Dcheck_methods.php15 function getFileName($type) argument
17 return __DIR__ . "/found_" . $type . "_methods.txt";
24 foreach ($urls as $type => $url) {
34 file_put_contents(getFileName($type), implode("\n", $matches[1]));
38 foreach ($urls as $type => $url) {
39 $filename = getFileName($type);
/imagick/tests/
H A D272_imagick_identifyimagetype.phpt16 $type = $im->identifyImageType();
18 if ($type !== Imagick::IMGTYPE_PALETTE) {
19 echo "Unexpected type value. Expecting: ".Imagick::IMGTYPE_PALETTE.", but got $type. \n";
H A D274_imagick_setImageAlpha.phpt29 function getColorError($type, $expected, $actual) {
31 if ($type == Imagick::PIXEL_CHAR ||
32 $type == Imagick::PIXEL_SHORT) {
39 if ($type == Imagick::PIXEL_FLOAT) {
43 if ($type == Imagick::PIXEL_DOUBLE) {
47 echo "Unknown type: $type \n";
H A D025-get-color.phpt123 list($colorString, $type, $expectations) = $test;
126 switch ($type) {
149 echo "Unknown test type $type" . PHP_EOL;
159 $type,
H A D282_ini_settings_set_falsy_string.phpt19 // to PHP, and are not normalised to the actual type used by an extension. Which means
21 // type isn't the same type as the extension is going to use it as.
H A D212_ImagickDraw_setGravity_basic.phpt29 foreach ($gravitySettings as $type => $description) {
30 $draw->setGravity($type);
H A D289_Imagick_setImageMask_basic.phpt57 foreach ($mask_types as $type => $type_name) {
59 $output->setImageMask($mask, $type);
H A D132_Imagick_setOption_case3.phpt15 $imagick->setOption('png:color-type', 6);
H A D270_imagick_restoreErrorHandler.phpt23 echo "Abnormal exception of type: ".get_class($e)."\n";
H A D256_Imagick_exportImagePixels_basic.phpt44 …echo "pixel type $pixelType has incorrect values. They should be 0/255, 1/255, 2/255... 255/255 or…
H A D072_Imagick_evaluateImage_basic.phpt97 … throw new \Exception("Evaluation type $evaluateType is not listed as either scaled or unscaled");
H A DOFL.txt25 however, cannot be released under any other type of license. The

Completed in 137 milliseconds