code
stringlengths
17
247k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
public function setImageMatte($matte) {}
(PECL imagick 2.0.0)<br/> Sets the image matte channel @link https://php.net/manual/en/imagick.setimagematte.php @param bool $matte <p> True activates the matte channel and false disables it. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageMatte
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function adaptiveResizeImage($columns, $rows, $bestfit = false, $legacy = false) {}
Adaptively resize image with data dependent triangulation If legacy is true, the calculations are done with the small rounding bug that existed in Imagick before 3.4.0.<br> If false, the calculations should produce the same results as ImageMagick CLI does.<br> <br> <b>Note:</b> The behavior of the parameter bestfit changed in Imagick 3.0.0. Before this version given dimensions 400x400 an image of dimensions 200x150 would be left untouched. In Imagick 3.0.0 and later the image would be scaled up to size 400x300 as this is the "best fit" for the given dimensions. If bestfit parameter is used both width and height must be given. @link https://php.net/manual/en/imagick.adaptiveresizeimage.php @param int $columns The number of columns in the scaled image. @param int $rows The number of rows in the scaled image. @param bool $bestfit [optional] Whether to fit the image inside a bounding box.<br> The behavior of the parameter bestfit changed in Imagick 3.0.0. Before this version given dimensions 400x400 an image of dimensions 200x150 would be left untouched. In Imagick 3.0.0 and later the image would be scaled up to size 400x300 as this is the "best fit" for the given dimensions. If bestfit parameter is used both width and height must be given. @param bool $legacy [optional] Added since 3.4.0. Default value FALSE @return bool TRUE on success @throws ImagickException Throws ImagickException on error @since 2.0.0
adaptiveResizeImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function sketchImage($radius, $sigma, $angle) {}
(PECL imagick 2.0.0)<br/> Simulates a pencil sketch @link https://php.net/manual/en/imagick.sketchimage.php @param float $radius <p> The radius of the Gaussian, in pixels, not counting the center pixel </p> @param float $sigma <p> The standard deviation of the Gaussian, in pixels. </p> @param float $angle <p> Apply the effect along this angle. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
sketchImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function shadeImage($gray, $azimuth, $elevation) {}
(PECL imagick 2.0.0)<br/> Creates a 3D effect @link https://php.net/manual/en/imagick.shadeimage.php @param bool $gray <p> A value other than zero shades the intensity of each pixel. </p> @param float $azimuth <p> Defines the light source direction. </p> @param float $elevation <p> Defines the light source direction. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
shadeImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getSizeOffset() {}
(PECL imagick 2.0.0)<br/> Returns the size offset @link https://php.net/manual/en/imagick.getsizeoffset.php @return int the size offset associated with the Imagick object. @throws ImagickException on error.
getSizeOffset
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setSizeOffset($columns, $rows, $offset) {}
(PECL imagick 2.0.0)<br/> Sets the size and offset of the Imagick object @link https://php.net/manual/en/imagick.setsizeoffset.php @param int $columns <p> The width in pixels. </p> @param int $rows <p> The height in pixels. </p> @param int $offset <p> The image offset. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setSizeOffset
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function adaptiveBlurImage($radius, $sigma, $channel = Imagick::CHANNEL_DEFAULT) {}
(PECL imagick 2.0.0)<br/> Adds adaptive blur filter to image @link https://php.net/manual/en/imagick.adaptiveblurimage.php @param float $radius <p> The radius of the Gaussian, in pixels, not counting the center pixel. Provide a value of 0 and the radius will be chosen automagically. </p> @param float $sigma <p> The standard deviation of the Gaussian, in pixels. </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
adaptiveBlurImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function contrastStretchImage($black_point, $white_point, $channel = Imagick::CHANNEL_ALL) {}
(PECL imagick 2.0.0)<br/> Enhances the contrast of a color image @link https://php.net/manual/en/imagick.contraststretchimage.php @param float $black_point <p> The black point. </p> @param float $white_point <p> The white point. </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channeltype constants using bitwise operators. <b>Imagick::CHANNEL_ALL</b>. Refer to this list of channel constants. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
contrastStretchImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function adaptiveSharpenImage($radius, $sigma, $channel = Imagick::CHANNEL_DEFAULT) {}
(PECL imagick 2.0.0)<br/> Adaptively sharpen the image @link https://php.net/manual/en/imagick.adaptivesharpenimage.php @param float $radius <p> The radius of the Gaussian, in pixels, not counting the center pixel. Use 0 for auto-select. </p> @param float $sigma <p> The standard deviation of the Gaussian, in pixels. </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
adaptiveSharpenImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function randomThresholdImage($low, $high, $channel = Imagick::CHANNEL_ALL) {}
(PECL imagick 2.0.0)<br/> Creates a high-contrast, two-color image @link https://php.net/manual/en/imagick.randomthresholdimage.php @param float $low <p> The low point </p> @param float $high <p> The high point </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channeltype constants using bitwise operators. Refer to this list of channel constants. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
randomThresholdImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setIteratorIndex($index) {}
(PECL imagick 2.0.0)<br/> Set the iterator position @link https://php.net/manual/en/imagick.setiteratorindex.php @param int $index <p> The position to set the iterator to </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setIteratorIndex
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getIteratorIndex() {}
(PECL imagick 2.0.0)<br/> Gets the index of the current active image @link https://php.net/manual/en/imagick.getiteratorindex.php @return int an integer containing the index of the image in the stack.
getIteratorIndex
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function transformImage($crop, $geometry) {}
(PECL imagick 2.0.0)<br/> Convenience method for setting crop size and the image geometry @link https://php.net/manual/en/imagick.transformimage.php @param string $crop <p> A crop geometry string. This geometry defines a subregion of the image to crop. </p> @param string $geometry <p> An image geometry string. This geometry defines the final size of the image. </p> @return Imagick <b>TRUE</b> on success. @throws ImagickException on error.
transformImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageOpacity($opacity) {}
(PECL imagick 2.0.0)<br/> Sets the image opacity level @link https://php.net/manual/en/imagick.setimageopacity.php @param float $opacity <p> The level of transparency: 1.0 is fully opaque and 0.0 is fully transparent. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageOpacity
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function orderedPosterizeImage($threshold_map, $channel = Imagick::CHANNEL_ALL) {}
(PECL imagick 2.2.2)<br/> Performs an ordered dither @link https://php.net/manual/en/imagick.orderedposterizeimage.php @param string $threshold_map <p> A string containing the name of the threshold dither map to use </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channeltype constants using bitwise operators. Refer to this list of channel constants. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
orderedPosterizeImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function polaroidImage(ImagickDraw $properties, $angle) {}
(PECL imagick 2.0.0)<br/> Simulates a Polaroid picture @link https://php.net/manual/en/imagick.polaroidimage.php @param ImagickDraw $properties <p> The polaroid properties </p> @param float $angle <p> The polaroid angle </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
polaroidImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageProperty($name) {}
(PECL imagick 2.0.0)<br/> Returns the named image property @link https://php.net/manual/en/imagick.getimageproperty.php @param string $name <p> name of the property (for example Exif:DateTime) </p> @return string|false a string containing the image property, false if a property with the given name does not exist. @throws ImagickException on error.
getImageProperty
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageProperty($name, $value) {}
(PECL imagick 2.0.0)<br/> Sets an image property @link https://php.net/manual/en/imagick.setimageproperty.php @param string $name @param string $value @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageProperty
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageInterpolateMethod($method) {}
(PECL imagick 2.0.0)<br/> Sets the image interpolate pixel method @link https://php.net/manual/en/imagick.setimageinterpolatemethod.php @param int $method <p> The method is one of the <b>Imagick::INTERPOLATE_*</b> constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageInterpolateMethod
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageInterpolateMethod() {}
(PECL imagick 2.0.0)<br/> Returns the interpolation method @link https://php.net/manual/en/imagick.getimageinterpolatemethod.php @return int the interpolate method on success. @throws ImagickException on error.
getImageInterpolateMethod
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function linearStretchImage($blackPoint, $whitePoint) {}
(PECL imagick 2.0.0)<br/> Stretches with saturation the image intensity @link https://php.net/manual/en/imagick.linearstretchimage.php @param float $blackPoint <p> The image black point </p> @param float $whitePoint <p> The image white point </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
linearStretchImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageLength() {}
(PECL imagick 2.0.0)<br/> Returns the image length in bytes @link https://php.net/manual/en/imagick.getimagelength.php @return int an int containing the current image size. @throws ImagickException on error.
getImageLength
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function extentImage($width, $height, $x, $y) {}
(No version information available, might only be in SVN)<br/> Set image size @link https://php.net/manual/en/imagick.extentimage.php @param int $width <p> The new width </p> @param int $height <p> The new height </p> @param int $x <p> X position for the new size </p> @param int $y <p> Y position for the new size </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
extentImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageOrientation() {}
(PECL imagick 2.0.0)<br/> Gets the image orientation @link https://php.net/manual/en/imagick.getimageorientation.php @return int an int on success. @throws ImagickException on error.
getImageOrientation
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageOrientation($orientation) {}
(PECL imagick 2.0.0)<br/> Sets the image orientation @link https://php.net/manual/en/imagick.setimageorientation.php @param int $orientation <p> One of the orientation constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageOrientation
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function paintFloodfillImage($fill, $fuzz, $bordercolor, $x, $y, $channel = Imagick::CHANNEL_ALL) {}
(PECL imagick 2.1.0)<br/> Changes the color value of any pixel that matches target @link https://php.net/manual/en/imagick.paintfloodfillimage.php @param mixed $fill <p> ImagickPixel object or a string containing the fill color </p> @param float $fuzz <p> The amount of fuzz. For example, set fuzz to 10 and the color red at intensities of 100 and 102 respectively are now interpreted as the same color for the purposes of the floodfill. </p> @param mixed $bordercolor <p> ImagickPixel object or a string containing the border color </p> @param int $x <p> X start position of the floodfill </p> @param int $y <p> Y start position of the floodfill </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
paintFloodfillImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function clutImage(Imagick $lookup_table, $channel = Imagick::CHANNEL_DEFAULT) {}
(PECL imagick 2.0.0)<br/> Replaces colors in the image from a color lookup table. Optional second parameter to replace colors in a specific channel. This method is available if Imagick has been compiled against ImageMagick version 6.3.6 or newer. @link https://php.net/manual/en/imagick.clutimage.php @param Imagick $lookup_table <p> Imagick object containing the color lookup table </p> @param int $channel [optional] <p> The Channeltype constant. When not supplied, default channels are replaced. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error. @since 2.0.0
clutImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageProperties($pattern = "*", $only_names = true) {}
(PECL imagick 2.0.0)<br/> Returns the image properties @link https://php.net/manual/en/imagick.getimageproperties.php @param string $pattern [optional] <p> The pattern for property names. </p> @param bool $only_names [optional] <p> Whether to return only property names. If <b>FALSE</b> then also the values are returned </p> @return array an array containing the image properties or property names. @throws ImagickException on error.
getImageProperties
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageProfiles($pattern = "*", $include_values = true) {}
(PECL imagick 2.2.0)<br/> Returns the image profiles @link https://php.net/manual/en/imagick.getimageprofiles.php @param string $pattern [optional] <p> The pattern for profile names. </p> @param bool $include_values [optional] <p> Whether to return only profile names. If <b>FALSE</b> then only profile names will be returned. </p> @return array an array containing the image profiles or profile names. @throws ImagickException on error.
getImageProfiles
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function distortImage($method, array $arguments, $bestfit) {}
(PECL imagick 2.0.1)<br/> Distorts an image using various distortion methods @link https://php.net/manual/en/imagick.distortimage.php @param int $method <p> The method of image distortion. See distortion constants </p> @param array $arguments <p> The arguments for this distortion method </p> @param bool $bestfit <p> Attempt to resize destination to fit distorted source </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
distortImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function writeImageFile($filehandle, ?string $format = null) {}
(No version information available, might only be in SVN)<br/> Writes an image to a filehandle @link https://php.net/manual/en/imagick.writeimagefile.php @param resource $filehandle <p> Filehandle where to write the image </p> @param string|null $format <p> The image format. The list of valid format specifiers depends on the compiled feature set of ImageMagick, and can be queried at runtime via Imagick::queryFormats(). </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
writeImageFile
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function writeImagesFile($filehandle, ?string $format = null) {}
(No version information available, might only be in SVN)<br/> Writes frames to a filehandle @link https://php.net/manual/en/imagick.writeimagesfile.php @param resource $filehandle <p> Filehandle where to write the images </p> @param string|null $format <p> The image format. The list of valid format specifiers depends on the compiled feature set of ImageMagick, and can be queried at runtime via Imagick::queryFormats(). </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
writeImagesFile
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function resetImagePage($page) {}
(No version information available, might only be in SVN)<br/> Reset image page @link https://php.net/manual/en/imagick.resetimagepage.php @param string $page <p> The page definition. For example 7168x5147+0+0 </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
resetImagePage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageClipMask(Imagick $clip_mask) {}
(No version information available, might only be in SVN)<br/> Sets image clip mask @link https://php.net/manual/en/imagick.setimageclipmask.php @param Imagick $clip_mask <p> The Imagick object containing the clip mask </p> @return bool <b>TRUE</b> on success.
setImageClipMask
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageClipMask() {}
(No version information available, might only be in SVN)<br/> Gets image clip mask @link https://php.net/manual/en/imagick.getimageclipmask.php @return Imagick an Imagick object containing the clip mask. @throws ImagickException on error.
getImageClipMask
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function animateImages($x_server) {}
(No version information available, might only be in SVN)<br/> Animates an image or images @link https://php.net/manual/en/imagick.animateimages.php @param string $x_server <p> X server address </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
animateImages
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function recolorImage(array $matrix) {}
(No version information available, might only be in SVN)<br/> Recolors image @link https://php.net/manual/en/imagick.recolorimage.php @param array $matrix <p> The matrix containing the color values </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
recolorImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setFont($font) {}
(PECL imagick 2.1.0)<br/> Sets font @link https://php.net/manual/en/imagick.setfont.php @param string $font <p> Font name or a filename </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setFont
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getFont() {}
(PECL imagick 2.1.0)<br/> Gets font @link https://php.net/manual/en/imagick.getfont.php @return string|false the string containing the font name or <b>FALSE</b> if not font is set.
getFont
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setPointSize($point_size) {}
(PECL imagick 2.1.0)<br/> Sets point size @link https://php.net/manual/en/imagick.setpointsize.php @param float $point_size <p> Point size </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setPointSize
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getPointSize() {}
(No version information available, might only be in SVN)<br/> Gets point size @link https://php.net/manual/en/imagick.getpointsize.php @return float a float containing the point size.
getPointSize
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function mergeImageLayers($layer_method) {}
(PECL imagick 2.1.0)<br/> Merges image layers @link https://php.net/manual/en/imagick.mergeimagelayers.php @param int $layer_method <p> One of the <b>Imagick::LAYERMETHOD_*</b> constants </p> @return Imagick Returns an Imagick object containing the merged image. @throws ImagickException
mergeImageLayers
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageAlphaChannel($mode) {}
(No version information available, might only be in SVN)<br/> Sets image alpha channel @link https://php.net/manual/en/imagick.setimagealphachannel.php @param int $mode <p> One of the <b>Imagick::ALPHACHANNEL_*</b> constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageAlphaChannel
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function floodFillPaintImage($fill, $fuzz, $target, $x, $y, $invert, $channel = Imagick::CHANNEL_DEFAULT) {}
(No version information available, might only be in SVN)<br/> Changes the color value of any pixel that matches target @link https://php.net/manual/en/imagick.floodfillpaintimage.php @param mixed $fill <p> ImagickPixel object or a string containing the fill color </p> @param float $fuzz <p> The amount of fuzz. For example, set fuzz to 10 and the color red at intensities of 100 and 102 respectively are now interpreted as the same color. </p> @param mixed $target <p> ImagickPixel object or a string containing the target color to paint </p> @param int $x <p> X start position of the floodfill </p> @param int $y <p> Y start position of the floodfill </p> @param bool $invert <p> If <b>TRUE</b> paints any pixel that does not match the target color. </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
floodFillPaintImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function opaquePaintImage($target, $fill, $fuzz, $invert, $channel = Imagick::CHANNEL_DEFAULT) {}
(No version information available, might only be in SVN)<br/> Changes the color value of any pixel that matches target @link https://php.net/manual/en/imagick.opaquepaintimage.php @param mixed $target <p> ImagickPixel object or a string containing the color to change </p> @param mixed $fill <p> The replacement color </p> @param float $fuzz <p> The amount of fuzz. For example, set fuzz to 10 and the color red at intensities of 100 and 102 respectively are now interpreted as the same color. </p> @param bool $invert <p> If <b>TRUE</b> paints any pixel that does not match the target color. </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
opaquePaintImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function transparentPaintImage($target, $alpha, $fuzz, $invert) {}
(No version information available, might only be in SVN)<br/> Paints pixels transparent @link https://php.net/manual/en/imagick.transparentpaintimage.php @param mixed $target <p> The target color to paint </p> @param float $alpha <p> The level of transparency: 1.0 is fully opaque and 0.0 is fully transparent. </p> @param float $fuzz <p> The amount of fuzz. For example, set fuzz to 10 and the color red at intensities of 100 and 102 respectively are now interpreted as the same color. </p> @param bool $invert <p> If <b>TRUE</b> paints any pixel that does not match the target color. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
transparentPaintImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function liquidRescaleImage($width, $height, $delta_x, $rigidity) {}
(No version information available, might only be in SVN)<br/> Animates an image or images @link https://php.net/manual/en/imagick.liquidrescaleimage.php @param int $width <p> The width of the target size </p> @param int $height <p> The height of the target size </p> @param float $delta_x <p> How much the seam can traverse on x-axis. Passing 0 causes the seams to be straight. </p> @param float $rigidity <p> Introduces a bias for non-straight seams. This parameter is typically 0. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
liquidRescaleImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function encipherImage($passphrase) {}
(No version information available, might only be in SVN)<br/> Enciphers an image @link https://php.net/manual/en/imagick.encipherimage.php @param string $passphrase <p> The passphrase </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
encipherImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function decipherImage($passphrase) {}
(No version information available, might only be in SVN)<br/> Deciphers an image @link https://php.net/manual/en/imagick.decipherimage.php @param string $passphrase <p> The passphrase </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
decipherImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setGravity($gravity) {}
(No version information available, might only be in SVN)<br/> Sets the gravity @link https://php.net/manual/en/imagick.setgravity.php @param int $gravity <p> The gravity property. Refer to the list of gravity constants. </p> @return bool No value is returned. @throws ImagickException on error.
setGravity
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getGravity() {}
(No version information available, might only be in SVN)<br/> Gets the gravity @link https://php.net/manual/en/imagick.getgravity.php @return int the gravity property. Refer to the list of gravity constants.
getGravity
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageChannelRange($channel) {}
(PECL imagick 2.2.1)<br/> Gets channel range @link https://php.net/manual/en/imagick.getimagechannelrange.php @param int $channel <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return float[] an array containing minima and maxima values of the channel(s). @throws ImagickException on error.
getImageChannelRange
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageAlphaChannel() {}
(No version information available, might only be in SVN)<br/> Gets the image alpha channel @link https://php.net/manual/en/imagick.getimagealphachannel.php @return bool a constant defining the current alpha channel value. Refer to this list of alpha channel constants. @throws ImagickException on error.
getImageAlphaChannel
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageChannelDistortions(Imagick $reference, $metric, $channel = Imagick::CHANNEL_DEFAULT) {}
(No version information available, might only be in SVN)<br/> Gets channel distortions @link https://php.net/manual/en/imagick.getimagechanneldistortions.php @param Imagick $reference <p> Imagick object containing the reference image </p> @param int $metric <p> Refer to this list of metric type constants. </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return float a float describing the channel distortion. @throws ImagickException on error.
getImageChannelDistortions
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageGravity($gravity) {}
(No version information available, might only be in SVN)<br/> Sets the image gravity @link https://php.net/manual/en/imagick.setimagegravity.php @param int $gravity <p> The gravity property. Refer to the list of gravity constants. </p> @return bool No value is returned. @throws ImagickException on error.
setImageGravity
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageGravity() {}
(No version information available, might only be in SVN)<br/> Gets the image gravity @link https://php.net/manual/en/imagick.getimagegravity.php @return int the images gravity property. Refer to the list of gravity constants. @throws ImagickException on error.
getImageGravity
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function importImagePixels($x, $y, $width, $height, $map, $storage, array $pixels) {}
(No version information available, might only be in SVN)<br/> Imports image pixels @link https://php.net/manual/en/imagick.importimagepixels.php @param int $x <p> The image x position </p> @param int $y <p> The image y position </p> @param int $width <p> The image width </p> @param int $height <p> The image height </p> @param string $map <p> Map of pixel ordering as a string. This can be for example RGB. The value can be any combination or order of R = red, G = green, B = blue, A = alpha (0 is transparent), O = opacity (0 is opaque), C = cyan, Y = yellow, M = magenta, K = black, I = intensity (for grayscale), P = pad. </p> @param int $storage <p> The pixel storage method. Refer to this list of pixel constants. </p> @param array $pixels <p> The array of pixels </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
importImagePixels
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function deskewImage($threshold) {}
(No version information available, might only be in SVN)<br/> Removes skew from the image @link https://php.net/manual/en/imagick.deskewimage.php @param float $threshold <p> Deskew threshold </p> @return bool @throws ImagickException on error.
deskewImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function segmentImage($COLORSPACE, $cluster_threshold, $smooth_threshold, $verbose = false) {}
(No version information available, might only be in SVN)<br/> Segments an image @link https://php.net/manual/en/imagick.segmentimage.php @param int $COLORSPACE <p> One of the COLORSPACE constants. </p> @param float $cluster_threshold <p> A percentage describing minimum number of pixels contained in hexedra before it is considered valid. </p> @param float $smooth_threshold <p> Eliminates noise from the histogram. </p> @param bool $verbose [optional] <p> Whether to output detailed information about recognised classes. </p> @return bool @throws ImagickException on error.
segmentImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function sparseColorImage($SPARSE_METHOD, array $arguments, $channel = Imagick::CHANNEL_DEFAULT) {}
(No version information available, might only be in SVN)<br/> Interpolates colors @link https://php.net/manual/en/imagick.sparsecolorimage.php @param int $SPARSE_METHOD <p> Refer to this list of sparse method constants </p> @param array $arguments <p> An array containing the coordinates. The array is in format array(1,1, 2,45) </p> @param int $channel [optional] @return bool <b>TRUE</b> on success. @throws ImagickException on error.
sparseColorImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function remapImage(Imagick $replacement, $DITHER) {}
(No version information available, might only be in SVN)<br/> Remaps image colors @link https://php.net/manual/en/imagick.remapimage.php @param Imagick $replacement <p> An Imagick object containing the replacement colors </p> @param int $DITHER <p> Refer to this list of dither method constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
remapImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function exportImagePixels($x, $y, $width, $height, $map, $STORAGE) {}
(No version information available, might only be in SVN)<br/> Exports raw image pixels @link https://php.net/manual/en/imagick.exportimagepixels.php @param int $x <p> X-coordinate of the exported area </p> @param int $y <p> Y-coordinate of the exported area </p> @param int $width <p> Width of the exported aread </p> @param int $height <p> Height of the exported area </p> @param string $map <p> Ordering of the exported pixels. For example "RGB". Valid characters for the map are R, G, B, A, O, C, Y, M, K, I and P. </p> @param int $STORAGE <p> Refer to this list of pixel type constants </p> @return int[] an array containing the pixels values. @throws ImagickException on error.
exportImagePixels
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageChannelKurtosis($channel = Imagick::CHANNEL_DEFAULT) {}
(No version information available, might only be in SVN)<br/> The getImageChannelKurtosis purpose @link https://php.net/manual/en/imagick.getimagechannelkurtosis.php @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return float[] an array with kurtosis and skewness members. @throws ImagickException on error.
getImageChannelKurtosis
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function functionImage($function, array $arguments, $channel = Imagick::CHANNEL_DEFAULT) {}
(No version information available, might only be in SVN)<br/> Applies a function on the image @link https://php.net/manual/en/imagick.functionimage.php @param int $function <p> Refer to this list of function constants </p> @param array $arguments <p> Array of arguments to pass to this function. </p> @param int $channel [optional] @return bool <b>TRUE</b> on success. @throws ImagickException on error.
functionImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function haldClutImage(Imagick $clut, $channel = Imagick::CHANNEL_DEFAULT) {}
(No version information available, might only be in SVN)<br/> Replaces colors in the image @link https://php.net/manual/en/imagick.haldclutimage.php @param Imagick $clut <p> Imagick object containing the Hald lookup image. </p> @param int $channel [optional] <p> Provide any channel constant that is valid for your channel mode. To apply to more than one channel, combine channel constants using bitwise operators. Defaults to <b>Imagick::CHANNEL_DEFAULT</b>. Refer to this list of channel constants </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
haldClutImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function autoLevelImage($CHANNEL) {}
Adjusts the levels of a particular image channel by scaling the minimum and maximum values to the full quantum range. @param $CHANNEL [optional] @return bool <b>TRUE</b> on success. @throws ImagickException on error.
autoLevelImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageArtifact($artifact) {}
(No version information available, might only be in SVN)<br/> Get image artifact @link https://php.net/manual/en/imagick.getimageartifact.php @param string $artifact <p> The name of the artifact </p> @return string the artifact value on success. @throws ImagickException on error.
getImageArtifact
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageArtifact($artifact, $value) {}
(No version information available, might only be in SVN)<br/> Set image artifact @link https://php.net/manual/en/imagick.setimageartifact.php @param string $artifact <p> The name of the artifact </p> @param string $value <p> The value of the artifact </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageArtifact
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function deleteImageArtifact($artifact) {}
(No version information available, might only be in SVN)<br/> Delete image artifact @link https://php.net/manual/en/imagick.deleteimageartifact.php @param string $artifact <p> The name of the artifact to delete </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
deleteImageArtifact
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getColorspace() {}
(PECL imagick 0.9.10-0.9.9)<br/> Gets the colorspace @link https://php.net/manual/en/imagick.getcolorspace.php @return int an integer which can be compared against COLORSPACE constants.
getColorspace
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setColorspace($COLORSPACE) {}
(No version information available, might only be in SVN)<br/> Set colorspace @link https://php.net/manual/en/imagick.setcolorspace.php @param int $COLORSPACE <p> One of the COLORSPACE constants </p> @return bool <b>TRUE</b> on success.
setColorspace
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function __construct($files = null) {}
(PECL imagick 2.0.0)<br/> The Imagick constructor @link https://php.net/manual/en/imagick.construct.php @param mixed $files <p> The path to an image to load or an array of paths. Paths can include wildcards for file names, or can be URLs. </p> @throws ImagickException Throws ImagickException on error.
__construct
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getPixelIterator() {}
(PECL imagick 2.0.0)<br/> Returns a MagickPixelIterator @link https://php.net/manual/en/imagick.getpixeliterator.php @return ImagickPixelIterator an ImagickPixelIterator on success. @throws ImagickException on error. @throws ImagickPixelIteratorException on error.
getPixelIterator
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getPixelRegionIterator($x, $y, $columns, $rows) {}
(PECL imagick 2.0.0)<br/> Get an ImagickPixelIterator for an image section @link https://php.net/manual/en/imagick.getpixelregioniterator.php @param int $x <p> The x-coordinate of the region. </p> @param int $y <p> The y-coordinate of the region. </p> @param int $columns <p> The width of the region. </p> @param int $rows <p> The height of the region. </p> @return ImagickPixelIterator an ImagickPixelIterator for an image section. @throws ImagickException on error. @throws ImagickPixelIteratorException on error.
getPixelRegionIterator
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function readImage($filename) {}
(PECL imagick 0.9.0-0.9.9)<br/> Reads image from filename @link https://php.net/manual/en/imagick.readimage.php @param string $filename @return bool <b>TRUE</b> on success. @throws ImagickException Throws ImagickException on error.
readImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function readImageBlob($image, $filename = null) {}
(PECL imagick 2.0.0)<br/> Reads image from a binary string @link https://php.net/manual/en/imagick.readimageblob.php @param string $image @param string $filename [optional] @return bool <b>TRUE</b> on success. @throws ImagickException Throws ImagickException on error.
readImageBlob
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageFormat($format) {}
(PECL imagick 2.0.0)<br/> Sets the format of a particular image @link https://php.net/manual/en/imagick.setimageformat.php @param string $format <p> String presentation of the image format. Format support depends on the ImageMagick installation. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageFormat
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function scaleImage($columns, $rows, $bestfit = false, $legacy = false) {}
Scales the size of an image to the given dimensions. Passing zero as either of the arguments will preserve dimension while scaling.<br> If legacy is true, the calculations are done with the small rounding bug that existed in Imagick before 3.4.0.<br> If false, the calculations should produce the same results as ImageMagick CLI does. @link https://php.net/manual/en/imagick.scaleimage.php @param int $columns @param int $rows @param bool $bestfit [optional] The behavior of the parameter bestfit changed in Imagick 3.0.0. Before this version given dimensions 400x400 an image of dimensions 200x150 would be left untouched. In Imagick 3.0.0 and later the image would be scaled up to size 400x300 as this is the "best fit" for the given dimensions. If bestfit parameter is used both width and height must be given. @param bool $legacy [optional] Added since 3.4.0. Default value FALSE @return bool <b>TRUE</b> on success. @throws ImagickException Throws ImagickException on error @since 2.0.0
scaleImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function writeImage($filename = null) {}
(PECL imagick 0.9.0-0.9.9)<br/> Writes an image to the specified filename @link https://php.net/manual/en/imagick.writeimage.php @param string $filename [optional] <p> Filename where to write the image. The extension of the filename defines the type of the file. Format can be forced regardless of file extension using format: prefix, for example "jpg:test.png". </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
writeImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function writeImages($filename, $adjoin) {}
(PECL imagick 0.9.0-0.9.9)<br/> Writes an image or image sequence @link https://php.net/manual/en/imagick.writeimages.php @param string $filename @param bool $adjoin @return bool <b>TRUE</b> on success. @throws ImagickException on error.
writeImages
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function blurImage($radius, $sigma, $channel = null) {}
(PECL imagick 2.0.0)<br/> Adds blur filter to image @link https://php.net/manual/en/imagick.blurimage.php @param float $radius <p> Blur radius </p> @param float $sigma <p> Standard deviation </p> @param int $channel [optional] <p> The Channeltype constant. When not supplied, all channels are blurred. </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
blurImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function thumbnailImage($columns, $rows, $bestfit = false, $fill = false, $legacy = false) {}
Changes the size of an image to the given dimensions and removes any associated profiles.<br> If legacy is true, the calculations are done with the small rounding bug that existed in Imagick before 3.4.0.<br> If false, the calculations should produce the same results as ImageMagick CLI does.<br> <br> <b>Note:</b> The behavior of the parameter bestfit changed in Imagick 3.0.0. Before this version given dimensions 400x400 an image of dimensions 200x150 would be left untouched. In Imagick 3.0.0 and later the image would be scaled up to size 400x300 as this is the "best fit" for the given dimensions. If bestfit parameter is used both width and height must be given. @link https://php.net/manual/en/imagick.thumbnailimage.php @param int $columns <p> Image width </p> @param int $rows <p> Image height </p> @param bool $bestfit [optional] <p> Whether to force maximum values </p> The behavior of the parameter bestfit changed in Imagick 3.0.0. Before this version given dimensions 400x400 an image of dimensions 200x150 would be left untouched. In Imagick 3.0.0 and later the image would be scaled up to size 400x300 as this is the "best fit" for the given dimensions. If bestfit parameter is used both width and height must be given. @param bool $fill [optional] @param bool $legacy [optional] Added since 3.4.0. Default value FALSE @return bool <b>TRUE</b> on success. @throws ImagickException on error. @since 2.0.0
thumbnailImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function cropThumbnailImage($width, $height, $legacy = false) {}
Creates a cropped thumbnail at the requested size. If legacy is true, uses the incorrect behaviour that was present until Imagick 3.4.0. If false it uses the correct behaviour. @link https://php.net/manual/en/imagick.cropthumbnailimage.php @param int $width The width of the thumbnail @param int $height The Height of the thumbnail @param bool $legacy [optional] Added since 3.4.0. Default value FALSE @return bool TRUE on succes @throws ImagickException Throws ImagickException on error @since 2.0.0
cropThumbnailImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageFilename() {}
(PECL imagick 2.0.0)<br/> Returns the filename of a particular image in a sequence @link https://php.net/manual/en/imagick.getimagefilename.php @return string a string with the filename of the image. @throws ImagickException on error.
getImageFilename
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageFilename($filename) {}
(PECL imagick 2.0.0)<br/> Sets the filename of a particular image @link https://php.net/manual/en/imagick.setimagefilename.php @param string $filename @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageFilename
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageFormat() {}
(PECL imagick 2.0.0)<br/> Returns the format of a particular image in a sequence @link https://php.net/manual/en/imagick.getimageformat.php @return string a string containing the image format on success. @throws ImagickException on error.
getImageFormat
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function removeImage() {}
(PECL imagick 2.0.0)<br/> Removes an image from the image list @link https://php.net/manual/en/imagick.removeimage.php @return bool <b>TRUE</b> on success. @throws ImagickException on error.
removeImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function destroy() {}
(PECL imagick 2.0.0)<br/> Destroys the Imagick object @link https://php.net/manual/en/imagick.destroy.php @return bool <b>TRUE</b> on success.
destroy
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function clear() {}
(PECL imagick 2.0.0)<br/> Clears all resources associated to Imagick object @link https://php.net/manual/en/imagick.clear.php @return bool <b>TRUE</b> on success.
clear
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageSize() {}
(PECL imagick 2.0.0)<br/> Returns the image length in bytes @link https://php.net/manual/en/imagick.getimagesize.php @return int an int containing the current image size. @throws ImagickException on error.
getImageSize
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageBlob() {}
(PECL imagick 2.0.0)<br/> Returns the image sequence as a blob @link https://php.net/manual/en/imagick.getimageblob.php @return string a string containing the image. @throws ImagickException on error.
getImageBlob
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImagesBlob() {}
(PECL imagick 2.0.0)<br/> Returns all image sequences as a blob @link https://php.net/manual/en/imagick.getimagesblob.php @return string a string containing the images. On failure, throws ImagickException on failure @throws ImagickException on failure
getImagesBlob
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setFirstIterator() {}
(PECL imagick 2.0.0)<br/> Sets the Imagick iterator to the first image @link https://php.net/manual/en/imagick.setfirstiterator.php @return bool <b>TRUE</b> on success.
setFirstIterator
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setLastIterator() {}
(PECL imagick 2.0.1)<br/> Sets the Imagick iterator to the last image @link https://php.net/manual/en/imagick.setlastiterator.php @return bool <b>TRUE</b> on success.
setLastIterator
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function previousImage() {}
(PECL imagick 2.0.0)<br/> Move to the previous image in the object @link https://php.net/manual/en/imagick.previousimage.php @return bool <b>TRUE</b> on success.
previousImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function nextImage() {}
(PECL imagick 2.0.0)<br/> Moves to the next image @link https://php.net/manual/en/imagick.nextimage.php @return bool <b>TRUE</b> on success.
nextImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function hasPreviousImage() {}
(PECL imagick 2.0.0)<br/> Checks if the object has a previous image @link https://php.net/manual/en/imagick.haspreviousimage.php @return bool <b>TRUE</b> if the object has more images when traversing the list in the reverse direction, returns <b>FALSE</b> if there are none.
hasPreviousImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function hasNextImage() {}
(PECL imagick 2.0.0)<br/> Checks if the object has more images @link https://php.net/manual/en/imagick.hasnextimage.php @return bool <b>TRUE</b> if the object has more images when traversing the list in the forward direction, returns <b>FALSE</b> if there are none.
hasNextImage
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function setImageIndex($index) {}
(PECL imagick 2.0.0)<br/> Set the iterator position @link https://php.net/manual/en/imagick.setimageindex.php @param int $index <p> The position to set the iterator to </p> @return bool <b>TRUE</b> on success. @throws ImagickException on error.
setImageIndex
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0
public function getImageIndex() {}
(PECL imagick 2.0.0)<br/> Gets the index of the current active image @link https://php.net/manual/en/imagick.getimageindex.php @return int an integer containing the index of the image in the stack.
getImageIndex
php
JetBrains/phpstorm-stubs
imagick/imagick.php
https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php
Apache-2.0