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 setOption($key, $value) {} | (PECL imagick 2.0.0)<br/>
Set an option
@link https://php.net/manual/en/imagick.setoption.php
@param string $key
@param string $value
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | setOption | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setPage($width, $height, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Sets the page geometry of the Imagick object
@link https://php.net/manual/en/imagick.setpage.php
@param int $width
@param int $height
@param int $x
@param int $y
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | setPage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public static function setResourceLimit($type, $limit) {} | (PECL imagick 2.0.0)<br/>
Sets the limit for a particular resource in megabytes
@link https://php.net/manual/en/imagick.setresourcelimit.php
@param int $type <p>
Refer to the list of resourcetype constants.
</p>
@param int $limit <p>
The resource limit. The unit depends on the type of the resource being limited.
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | setResourceLimit | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setResolution($x_resolution, $y_resolution) {} | (PECL imagick 2.0.0)<br/>
Sets the image resolution
@link https://php.net/manual/en/imagick.setresolution.php
@param float $x_resolution <p>
The horizontal resolution.
</p>
@param float $y_resolution <p>
The vertical resolution.
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | setResolution | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setSamplingFactors(array $factors) {} | (PECL imagick 2.0.0)<br/>
Sets the image sampling factors
@link https://php.net/manual/en/imagick.setsamplingfactors.php
@param array $factors
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | setSamplingFactors | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setSize($columns, $rows) {} | (PECL imagick 2.0.0)<br/>
Sets the size of the Imagick object
@link https://php.net/manual/en/imagick.setsize.php
@param int $columns
@param int $rows
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | setSize | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setType($image_type) {} | (PECL imagick 2.0.0)<br/>
Sets the image type attribute
@link https://php.net/manual/en/imagick.settype.php
@param int $image_type
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | setType | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function valid() {} | (PECL imagick 2.0.0)<br/>
Checks if the current item is valid
@link https://php.net/manual/en/imagick.valid.php
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | valid | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function current() {} | (PECL imagick 2.0.0)<br/>
Returns a reference to the current Imagick object
@link https://php.net/manual/en/imagick.current.php
@return Imagick self on success. | current | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function brightnessContrastImage($brightness, $contrast, $CHANNEL = Imagick::CHANNEL_DEFAULT) {} | Change the brightness and/or contrast of an image. It converts the brightness and contrast parameters into slope and intercept and calls a polynomical function to apply to the image.
@link https://php.net/manual/en/imagick.brightnesscontrastimage.php
@param float $brightness
@param float $contrast
@param int $CHANNEL [optional]
@return void
@throws ImagickException on error.
@since 3.3.0 | brightnessContrastImage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function morphology($morphologyMethod, $iterations, ImagickKernel $ImagickKernel, $CHANNEL = Imagick::CHANNEL_DEFAULT) {} | Applies a user supplied kernel to the image according to the given morphology method.
@link https://php.net/manual/en/imagick.morphology.php
@param int $morphologyMethod Which morphology method to use one of the \Imagick::MORPHOLOGY_* constants.
@param int $iterations The number of iteration to apply the morphology function. A value of -1 means loop until no change found. How this is applied may depend on the morphology method. Typically this is a value of 1.
@param ImagickKernel $ImagickKernel
@param int $CHANNEL [optional]
@return void
@throws ImagickException on error.
@throws ImagickKernelException on error.
@since 3.3.0 | morphology | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function filter(ImagickKernel $ImagickKernel, $CHANNEL = Imagick::CHANNEL_DEFAULT) {} | Applies a custom convolution kernel to the image.
@link https://php.net/manual/en/imagick.filter.php
@param ImagickKernel $ImagickKernel An instance of ImagickKernel that represents either a single kernel or a linked series of kernels.
@param int $CHANNEL [optional] 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 Imagick::CHANNEL_DEFAULT. Refer to this list of channel constants
@return void
@throws ImagickException on error.
@since 3.3.0 | filter | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function colorMatrixImage($color_matrix = Imagick::CHANNEL_DEFAULT) {} | Apply color transformation to an image. The method permits saturation changes, hue rotation, luminance to alpha, and various other effects. Although variable-sized transformation matrices can be used, typically one uses a 5x5 matrix for an RGBA image and a 6x6 for CMYKA (or RGBA with offsets).
The matrix is similar to those used by Adobe Flash except offsets are in column 6 rather than 5 (in support of CMYKA images) and offsets are normalized (divide Flash offset by 255)
@link https://php.net/manual/en/imagick.colormatriximage.php
@param array $color_matrix
@return void
@throws ImagickException on error.
@since 3.3.0 | colorMatrixImage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function forwardFourierTransformimage($magnitude) {} | Implements the discrete Fourier transform (DFT) of the image either as a magnitude / phase or real / imaginary image pair.
@link https://php.net/manual/en/imagick.forwardfouriertransformimage.php
@param bool $magnitude If true, return as magnitude / phase pair otherwise a real / imaginary image pair.
@return void
@throws ImagickException on error.
@since 3.3.0 | forwardFourierTransformimage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getImageCompression() {} | Gets the current image's compression type.
@link https://php.net/manual/en/imagick.getimagecompression.php
@return int
@since 3.3.0 | getImageCompression | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public static function getRegistry($key) {} | Get the StringRegistry entry for the named key or false if not set.
@link https://php.net/manual/en/imagick.getregistry.php
@param string $key
@return string|false
@throws ImagickException Since version >= 3.4.3. Throws an exception if the key does not exist, rather than terminating the program.
@since 3.3.0 | getRegistry | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public static function getQuantum() {} | Returns the ImageMagick quantum range as an integer.
@link https://php.net/manual/en/imagick.getquantum.php
@return int
@since 3.3.0 | getQuantum | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function identifyFormat($embedText) {} | Replaces any embedded formatting characters with the appropriate image property and returns the interpreted text. See https://www.imagemagick.org/script/escape.php for escape sequences.
@link https://php.net/manual/en/imagick.identifyformat.php
@see https://www.imagemagick.org/script/escape.php
@param string $embedText A string containing formatting sequences e.g. "Trim box: %@ number of unique colors: %k".
@return bool
@throws ImagickException on error.
@since 3.3.0 | identifyFormat | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function inverseFourierTransformImage($complement, $magnitude) {} | Implements the inverse discrete Fourier transform (DFT) of the image either as a magnitude / phase or real / imaginary image pair.
@link https://php.net/manual/en/imagick.inversefouriertransformimage.php
@param Imagick $complement The second image to combine with this one to form either the magnitude / phase or real / imaginary image pair.
@param bool $magnitude If true, combine as magnitude / phase pair otherwise a real / imaginary image pair.
@return void
@throws ImagickException on error.
@since 3.3.0 | inverseFourierTransformImage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public static function listRegistry() {} | List all the registry settings. Returns an array of all the key/value pairs in the registry
@link https://php.net/manual/en/imagick.listregistry.php
@return array An array containing the key/values from the registry.
@since 3.3.0 | listRegistry | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function selectiveBlurImage($radius, $sigma, $threshold, $CHANNEL = Imagick::CHANNEL_DEFAULT) {} | Selectively blur an image within a contrast threshold. It is similar to the unsharpen mask that sharpens everything with contrast above a certain threshold.
@link https://php.net/manual/en/imagick.selectiveblurimage.php
@param float $radius
@param float $sigma
@param float $threshold
@param int $CHANNEL 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 Imagick::CHANNEL_DEFAULT. Refer to this list of channel constants
@return void
@throws ImagickException on error.
@since 3.3.0 | selectiveBlurImage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setAntiAlias($antialias) {} | Set whether antialiasing should be used for operations. On by default.
@param bool $antialias
@return int
@throws ImagickException on error.
@since 3.3.0 | setAntiAlias | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setProgressMonitor($callback) {} | Set a callback that will be called during the processing of the Imagick image.
@link https://php.net/manual/en/imagick.setprogressmonitor.php
@param callable $callback The progress function to call. It should return true if image processing should continue, or false if it should be cancelled.
The offset parameter indicates the progress and the span parameter indicates the total amount of work needed to be done.
<pre> bool callback ( mixed $offset , mixed $span ) </pre>
<b>Caution</b>
The values passed to the callback function are not consistent. In particular the span parameter can increase during image processing. Because of this calculating the percentage complete of an image operation is not trivial.
@return void
@throws ImagickException on error.
@since 3.3.0 | setProgressMonitor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public static function setRegistry($key, $value) {} | Sets the ImageMagick registry entry named key to value. This is most useful for setting "temporary-path" which controls where ImageMagick creates temporary images e.g. while processing PDFs.
@link https://php.net/manual/en/imagick.setregistry.php
@param string $key
@param string $value
@return void
@since 3.3.0 | setRegistry | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function statisticImage($type, $width, $height, $channel = Imagick::CHANNEL_DEFAULT) {} | Replace each pixel with corresponding statistic from the neighborhood of the specified width and height.
@link https://php.net/manual/en/imagick.statisticimage.php
@param int $type
@param int $width
@param int $height
@param int $channel [optional]
@return void
@throws ImagickException on error.
@since 3.3.0 | statisticImage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function subImageMatch(Imagick $imagick, array &$bestMatch, &$similarity, $similarity_threshold, $metric) {} | Searches for a subimage in the current image and returns a similarity image such that an exact match location is
completely white and if none of the pixels match, black, otherwise some gray level in-between.
You can also pass in the optional parameters bestMatch and similarity. After calling the function similarity will
be set to the 'score' of the similarity between the subimage and the matching position in the larger image,
bestMatch will contain an associative array with elements x, y, width, height that describe the matching region.
@link https://php.net/manual/en/imagick.subimagematch.php
@param Imagick $imagick
@param array &$bestMatch [optional]
@param float &$similarity [optional] A new image that displays the amount of similarity at each pixel.
@param float $similarity_threshold [optional] Only used if compiled with ImageMagick (library) > 7
@param int $metric [optional] Only used if compiled with ImageMagick (library) > 7
@return Imagick
@throws ImagickException on error.
@since 3.3.0 | subImageMatch | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function similarityImage(Imagick $imagick, array &$bestMatch, &$similarity, $similarity_threshold, $metric) {} | Is an alias of Imagick::subImageMatch
@param Imagick $imagick
@param array &$bestMatch [optional]
@param float &$similarity [optional] A new image that displays the amount of similarity at each pixel.
@param float $similarity_threshold [optional]
@param int $metric [optional]
@return Imagick
@throws ImagickException on error.
@see Imagick::subImageMatch() This function is an alias of subImageMatch()
@since 3.4.0 | similarityImage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public static function getConfigureOptions() {} | Returns any ImageMagick configure options that match the specified pattern (e.g. "*" for all). Options include NAME, VERSION, LIB_VERSION, etc.
@return array<string, string>
@since 3.4.0 | getConfigureOptions | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFeatures() {} | GetFeatures() returns the ImageMagick features that have been compiled into the runtime.
@return string
@since 3.4.0 | getFeatures | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setImageChannelMask($channel) {} | Sets the image channel mask. Returns the previous set channel mask.
Only works with Imagick >= 7
@param int $channel
@throws ImagickException on error.
@since 3.4.0 | setImageChannelMask | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function evaluateImages($EVALUATE_CONSTANT) {} | Merge multiple images of the same size together with the selected operator. https://www.imagemagick.org/Usage/layers/#evaluate-sequence
@param int $EVALUATE_CONSTANT
@return bool
@see https://www.imagemagick.org/Usage/layers/#evaluate-sequence
@throws ImagickException on error.
@since 3.4.0 | evaluateImages | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function autoGammaImage($channel = Imagick::CHANNEL_ALL) {} | Extracts the 'mean' from the image and adjust the image to try make set its gamma appropriately.
@param int $channel [optional] Default value Imagick::CHANNEL_ALL
@return bool
@throws ImagickException on error.
@since 3.4.1 | autoGammaImage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function autoOrient() {} | Adjusts an image so that its orientation is suitable $ for viewing (i.e. top-left orientation).
@return bool
@throws ImagickException on error.
@since 3.4.1 | autoOrient | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function compositeImageGravity(Imagick $imagick, $COMPOSITE_CONSTANT, $GRAVITY_CONSTANT) {} | Composite one image onto another using the specified gravity.
@param Imagick $imagick
@param int $COMPOSITE_CONSTANT
@param int $GRAVITY_CONSTANT
@return bool
@throws ImagickException on error.
@since 3.4.1 | compositeImageGravity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function localContrastImage($radius, $strength) {} | Attempts to increase the appearance of large-scale light-dark transitions.
@param float $radius
@param float $strength
@return bool
@throws ImagickException on error.
@since 3.4.1 | localContrastImage | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function identifyImageType() {} | Identifies the potential image type, returns one of the Imagick::IMGTYPE_* constants
@return int
@throws ImagickException on error.
@since 3.4.3 | identifyImageType | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setImageAlpha($alpha) {} | Sets the image to the specified alpha level. Will replace ImagickDraw::setOpacity()
@param float $alpha
@return bool
@throws ImagickException on error.
@since 3.4.3 | setImageAlpha | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function __construct() {} | (PECL imagick 2.0.0)<br/>
The ImagickDraw constructor
@link https://php.net/manual/en/imagickdraw.construct.php | __construct | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFillColor(ImagickPixel $fill_pixel) {} | (PECL imagick 2.0.0)<br/>
Sets the fill color to be used for drawing filled objects
@link https://php.net/manual/en/imagickdraw.setfillcolor.php
@param ImagickPixel $fill_pixel <p>
ImagickPixel to use to set the color
</p>
@return bool No value is returned.
@throws ImagickDrawException on error. | setFillColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFillAlpha($opacity) {} | (PECL imagick 2.0.0)<br/>
Sets the opacity to use when drawing using the fill color or fill texture
@link https://php.net/manual/en/imagickdraw.setfillalpha.php
@param float $opacity <p>
fill alpha
</p>
@return bool No value is returned. | setFillAlpha | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeColor(ImagickPixel $stroke_pixel) {} | (PECL imagick 2.0.0)<br/>
Sets the color used for stroking object outlines
@link https://php.net/manual/en/imagickdraw.setstrokecolor.php
@param ImagickPixel $stroke_pixel <p>
the stroke color
</p>
@return bool No value is returned.
@throws ImagickDrawException on error. | setStrokeColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeAlpha($opacity) {} | (PECL imagick 2.0.0)<br/>
Specifies the opacity of stroked object outlines
@link https://php.net/manual/en/imagickdraw.setstrokealpha.php
@param float $opacity <p>
opacity
</p>
@return bool No value is returned. | setStrokeAlpha | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeWidth($stroke_width) {} | (PECL imagick 2.0.0)<br/>
Sets the width of the stroke used to draw object outlines
@link https://php.net/manual/en/imagickdraw.setstrokewidth.php
@param float $stroke_width <p>
stroke width
</p>
@return bool No value is returned. | setStrokeWidth | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function circle($ox, $oy, $px, $py) {} | (PECL imagick 2.0.0)<br/>
Draws a circle
@link https://php.net/manual/en/imagickdraw.circle.php
@param float $ox <p>
origin x coordinate
</p>
@param float $oy <p>
origin y coordinate
</p>
@param float $px <p>
perimeter x coordinate
</p>
@param float $py <p>
perimeter y coordinate
</p>
@return bool No value is returned. | circle | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function annotation($x, $y, $text) {} | (PECL imagick 2.0.0)<br/>
Draws text on the image
@link https://php.net/manual/en/imagickdraw.annotation.php
@param float $x <p>
The x coordinate where text is drawn
</p>
@param float $y <p>
The y coordinate where text is drawn
</p>
@param string $text <p>
The text to draw on the image
</p>
@return bool No value is returned.
@throws ImagickDrawException on error. | annotation | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setTextAntialias($antiAlias) {} | (PECL imagick 2.0.0)<br/>
Controls whether text is antialiased
@link https://php.net/manual/en/imagickdraw.settextantialias.php
@param bool $antiAlias
@return bool No value is returned. | setTextAntialias | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setTextEncoding($encoding) {} | (PECL imagick 2.0.0)<br/>
Specifies specifies the text code set
@link https://php.net/manual/en/imagickdraw.settextencoding.php
@param string $encoding <p>
the encoding name
</p>
@return bool No value is returned. | setTextEncoding | 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_name) {} | (PECL imagick 2.0.0)<br/>
Sets the fully-specified font to use when annotating with text
@link https://php.net/manual/en/imagickdraw.setfont.php
@param string $font_name
@return bool <b>TRUE</b> on success.
@throws ImagickDrawException on error.
@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 setFontFamily($font_family) {} | (PECL imagick 2.0.0)<br/>
Sets the font family to use when annotating with text
@link https://php.net/manual/en/imagickdraw.setfontfamily.php
@param string $font_family <p>
the font family
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickDrawException on error.
@throws ImagickException on error. | setFontFamily | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFontSize($pointsize) {} | (PECL imagick 2.0.0)<br/>
Sets the font pointsize to use when annotating with text
@link https://php.net/manual/en/imagickdraw.setfontsize.php
@param float $pointsize <p>
the point size
</p>
@return bool No value is returned. | setFontSize | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFontStyle($style) {} | (PECL imagick 2.0.0)<br/>
Sets the font style to use when annotating with text
@link https://php.net/manual/en/imagickdraw.setfontstyle.php
@param int $style <p>
STYLETYPE_ constant
</p>
@return bool No value is returned. | setFontStyle | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFontWeight($font_weight) {} | (PECL imagick 2.0.0)<br/>
Sets the font weight
@link https://php.net/manual/en/imagickdraw.setfontweight.php
@param int $font_weight
@return bool
@throws ImagickDrawException on error. | setFontWeight | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFontFamily() {} | (PECL imagick 2.0.0)<br/>
Returns the font family
@link https://php.net/manual/en/imagickdraw.getfontfamily.php
@return string|false the font family currently selected or false if font family is not set. | getFontFamily | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFontSize() {} | (PECL imagick 2.0.0)<br/>
Returns the font pointsize
@link https://php.net/manual/en/imagickdraw.getfontsize.php
@return float the font size associated with the current ImagickDraw object. | getFontSize | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFontStyle() {} | (PECL imagick 2.0.0)<br/>
Returns the font style
@link https://php.net/manual/en/imagickdraw.getfontstyle.php
@return int the font style constant (STYLE_) associated with the ImagickDraw object
or 0 if no style is set. | getFontStyle | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFontWeight() {} | (PECL imagick 2.0.0)<br/>
Returns the font weight
@link https://php.net/manual/en/imagickdraw.getfontweight.php
@return int an int on success and 0 if no weight is set. | getFontWeight | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function rectangle($x1, $y1, $x2, $y2) {} | (PECL imagick 2.0.0)<br/>
Draws a rectangle
@link https://php.net/manual/en/imagickdraw.rectangle.php
@param float $x1 <p>
x coordinate of the top left corner
</p>
@param float $y1 <p>
y coordinate of the top left corner
</p>
@param float $x2 <p>
x coordinate of the bottom right corner
</p>
@param float $y2 <p>
y coordinate of the bottom right corner
</p>
@return bool No value is returned. | rectangle | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function roundRectangle($x1, $y1, $x2, $y2, $rx, $ry) {} | (PECL imagick 2.0.0)<br/>
Draws a rounded rectangle
@link https://php.net/manual/en/imagickdraw.roundrectangle.php
@param float $x1 <p>
x coordinate of the top left corner
</p>
@param float $y1 <p>
y coordinate of the top left corner
</p>
@param float $x2 <p>
x coordinate of the bottom right
</p>
@param float $y2 <p>
y coordinate of the bottom right
</p>
@param float $rx <p>
x rounding
</p>
@param float $ry <p>
y rounding
</p>
@return bool No value is returned. | roundRectangle | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function ellipse($ox, $oy, $rx, $ry, $start, $end) {} | (PECL imagick 2.0.0)<br/>
Draws an ellipse on the image
@link https://php.net/manual/en/imagickdraw.ellipse.php
@param float $ox
@param float $oy
@param float $rx
@param float $ry
@param float $start
@param float $end
@return bool No value is returned. | ellipse | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function skewX($degrees) {} | (PECL imagick 2.0.0)<br/>
Skews the current coordinate system in the horizontal direction
@link https://php.net/manual/en/imagickdraw.skewx.php
@param float $degrees <p>
degrees to skew
</p>
@return bool No value is returned. | skewX | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function skewY($degrees) {} | (PECL imagick 2.0.0)<br/>
Skews the current coordinate system in the vertical direction
@link https://php.net/manual/en/imagickdraw.skewy.php
@param float $degrees <p>
degrees to skew
</p>
@return bool No value is returned. | skewY | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function translate($x, $y) {} | (PECL imagick 2.0.0)<br/>
Applies a translation to the current coordinate system
@link https://php.net/manual/en/imagickdraw.translate.php
@param float $x <p>
horizontal translation
</p>
@param float $y <p>
vertical translation
</p>
@return bool No value is returned. | translate | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function line($sx, $sy, $ex, $ey) {} | (PECL imagick 2.0.0)<br/>
Draws a line
@link https://php.net/manual/en/imagickdraw.line.php
@param float $sx <p>
starting x coordinate
</p>
@param float $sy <p>
starting y coordinate
</p>
@param float $ex <p>
ending x coordinate
</p>
@param float $ey <p>
ending y coordinate
</p>
@return bool No value is returned. | line | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function arc($sx, $sy, $ex, $ey, $sd, $ed) {} | (PECL imagick 2.0.0)<br/>
Draws an arc
@link https://php.net/manual/en/imagickdraw.arc.php
@param float $sx <p>
Starting x ordinate of bounding rectangle
</p>
@param float $sy <p>
starting y ordinate of bounding rectangle
</p>
@param float $ex <p>
ending x ordinate of bounding rectangle
</p>
@param float $ey <p>
ending y ordinate of bounding rectangle
</p>
@param float $sd <p>
starting degrees of rotation
</p>
@param float $ed <p>
ending degrees of rotation
</p>
@return bool No value is returned. | arc | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function matte($x, $y, $paintMethod) {} | (PECL imagick 2.0.0)<br/>
Paints on the image's opacity channel
@link https://php.net/manual/en/imagickdraw.matte.php
@param float $x <p>
x coordinate of the matte
</p>
@param float $y <p>
y coordinate of the matte
</p>
@param int $paintMethod <p>
PAINT_ constant
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. | matte | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function point($x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a point
@link https://php.net/manual/en/imagickdraw.point.php
@param float $x <p>
point's x coordinate
</p>
@param float $y <p>
point's y coordinate
</p>
@return bool No value is returned. | point | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getTextDecoration() {} | (PECL imagick 2.0.0)<br/>
Returns the text decoration
@link https://php.net/manual/en/imagickdraw.gettextdecoration.php
@return int one of the DECORATION_ constants
and 0 if no decoration is set. | getTextDecoration | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getTextEncoding() {} | (PECL imagick 2.0.0)<br/>
Returns the code set used for text annotations
@link https://php.net/manual/en/imagickdraw.gettextencoding.php
@return string a string specifying the code set
or false if text encoding is not set. | getTextEncoding | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFontStretch($fontStretch) {} | (PECL imagick 2.0.0)<br/>
Sets the font stretch to use when annotating with text
@link https://php.net/manual/en/imagickdraw.setfontstretch.php
@param int $fontStretch <p>
STRETCH_ constant
</p>
@return bool No value is returned. | setFontStretch | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeAntialias($stroke_antialias) {} | (PECL imagick 2.0.0)<br/>
Controls whether stroked outlines are antialiased
@link https://php.net/manual/en/imagickdraw.setstrokeantialias.php
@param bool $stroke_antialias <p>
the antialias setting
</p>
@return bool No value is returned. | setStrokeAntialias | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setTextAlignment($alignment) {} | (PECL imagick 2.0.0)<br/>
Specifies a text alignment
@link https://php.net/manual/en/imagickdraw.settextalignment.php
@param int $alignment <p>
ALIGN_ constant
</p>
@return bool No value is returned. | setTextAlignment | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setTextDecoration($decoration) {} | (PECL imagick 2.0.0)<br/>
Specifies a decoration
@link https://php.net/manual/en/imagickdraw.settextdecoration.php
@param int $decoration <p>
DECORATION_ constant
</p>
@return bool No value is returned. | setTextDecoration | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setTextUnderColor(ImagickPixel $under_color) {} | (PECL imagick 2.0.0)<br/>
Specifies the color of a background rectangle
@link https://php.net/manual/en/imagickdraw.settextundercolor.php
@param ImagickPixel $under_color <p>
the under color
</p>
@return bool No value is returned.
@throws ImagickDrawException on error. | setTextUnderColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setViewbox($x1, $y1, $x2, $y2) {} | (PECL imagick 2.0.0)<br/>
Sets the overall canvas size
@link https://php.net/manual/en/imagickdraw.setviewbox.php
@param int $x1 <p>
left x coordinate
</p>
@param int $y1 <p>
left y coordinate
</p>
@param int $x2 <p>
right x coordinate
</p>
@param int $y2 <p>
right y coordinate
</p>
@return bool No value is returned. | setViewbox | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function affine(array $affine) {} | (PECL imagick 2.0.0)<br/>
Adjusts the current affine transformation matrix
@link https://php.net/manual/en/imagickdraw.affine.php
@param array $affine <p>
Affine matrix parameters
</p>
@return bool No value is returned.
@throws ImagickDrawException on error. | affine | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function bezier(array $coordinates) {} | (PECL imagick 2.0.0)<br/>
Draws a bezier curve
@link https://php.net/manual/en/imagickdraw.bezier.php
@param array $coordinates <p>
Multidimensional array like array( array( 'x' => 1, 'y' => 2 ),
array( 'x' => 3, 'y' => 4 ) )
</p>
@return bool No value is returned.
@throws ImagickDrawException on error. | bezier | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function composite($compose, $x, $y, $width, $height, Imagick $compositeWand) {} | (PECL imagick 2.0.0)<br/>
Composites an image onto the current image
@link https://php.net/manual/en/imagickdraw.composite.php
@param int $compose <p>
composition operator. One of COMPOSITE_ constants
</p>
@param float $x <p>
x coordinate of the top left corner
</p>
@param float $y <p>
y coordinate of the top left corner
</p>
@param float $width <p>
width of the composition image
</p>
@param float $height <p>
height of the composition image
</p>
@param Imagick $compositeWand <p>
the Imagick object where composition image is taken from
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickException on error. | composite | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function color($x, $y, $paintMethod) {} | (PECL imagick 2.0.0)<br/>
Draws color on image
@link https://php.net/manual/en/imagickdraw.color.php
@param float $x <p>
x coordinate of the paint
</p>
@param float $y <p>
y coordinate of the paint
</p>
@param int $paintMethod <p>
one of the PAINT_ constants
</p>
@return bool No value is returned. | color | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function comment($comment) {} | (PECL imagick 2.0.0)<br/>
Adds a comment
@link https://php.net/manual/en/imagickdraw.comment.php
@param string $comment <p>
The comment string to add to vector output stream
</p>
@return bool No value is returned. | comment | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getClipPath() {} | (PECL imagick 2.0.0)<br/>
Obtains the current clipping path ID
@link https://php.net/manual/en/imagickdraw.getclippath.php
@return string|false a string containing the clip path ID or false if no clip path exists. | getClipPath | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getClipRule() {} | (PECL imagick 2.0.0)<br/>
Returns the current polygon fill rule
@link https://php.net/manual/en/imagickdraw.getcliprule.php
@return int one of the FILLRULE_ constants. | getClipRule | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getClipUnits() {} | (PECL imagick 2.0.0)<br/>
Returns the interpretation of clip path units
@link https://php.net/manual/en/imagickdraw.getclipunits.php
@return int an int on success. | getClipUnits | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFillColor() {} | (PECL imagick 2.0.0)<br/>
Returns the fill color
@link https://php.net/manual/en/imagickdraw.getfillcolor.php
@return ImagickPixel an ImagickPixel object. | getFillColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFillOpacity() {} | (PECL imagick 2.0.0)<br/>
Returns the opacity used when drawing
@link https://php.net/manual/en/imagickdraw.getfillopacity.php
@return float The opacity. | getFillOpacity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFillRule() {} | (PECL imagick 2.0.0)<br/>
Returns the fill rule
@link https://php.net/manual/en/imagickdraw.getfillrule.php
@return int a FILLRULE_ constant | getFillRule | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeAntialias() {} | (PECL imagick 2.0.0)<br/>
Returns the current stroke antialias setting
@link https://php.net/manual/en/imagickdraw.getstrokeantialias.php
@return bool <b>TRUE</b> if antialiasing is on and false if it is off. | getStrokeAntialias | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeColor() {} | (PECL imagick 2.0.0)<br/>
Returns the color used for stroking object outlines
@link https://php.net/manual/en/imagickdraw.getstrokecolor.php
@return ImagickPixel an ImagickPixel object which describes the color. | getStrokeColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeDashArray() {} | (PECL imagick 2.0.0)<br/>
Returns an array representing the pattern of dashes and gaps used to stroke paths
@link https://php.net/manual/en/imagickdraw.getstrokedasharray.php
@return array an array on success and empty array if not set. | getStrokeDashArray | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeDashOffset() {} | (PECL imagick 2.0.0)<br/>
Returns the offset into the dash pattern to start the dash
@link https://php.net/manual/en/imagickdraw.getstrokedashoffset.php
@return float a float representing the offset and 0 if it's not set. | getStrokeDashOffset | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeLineCap() {} | (PECL imagick 2.0.0)<br/>
Returns the shape to be used at the end of open subpaths when they are stroked
@link https://php.net/manual/en/imagickdraw.getstrokelinecap.php
@return int one of the LINECAP_ constants or 0 if stroke linecap is not set. | getStrokeLineCap | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeLineJoin() {} | (PECL imagick 2.0.0)<br/>
Returns the shape to be used at the corners of paths when they are stroked
@link https://php.net/manual/en/imagickdraw.getstrokelinejoin.php
@return int one of the LINEJOIN_ constants or 0 if stroke line join is not set. | getStrokeLineJoin | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeMiterLimit() {} | (PECL imagick 2.0.0)<br/>
Returns the stroke miter limit
@link https://php.net/manual/en/imagickdraw.getstrokemiterlimit.php
@return int an int describing the miter limit
and 0 if no miter limit is set. | getStrokeMiterLimit | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeOpacity() {} | (PECL imagick 2.0.0)<br/>
Returns the opacity of stroked object outlines
@link https://php.net/manual/en/imagickdraw.getstrokeopacity.php
@return float a float describing the opacity. | getStrokeOpacity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getStrokeWidth() {} | (PECL imagick 2.0.0)<br/>
Returns the width of the stroke used to draw object outlines
@link https://php.net/manual/en/imagickdraw.getstrokewidth.php
@return float a float describing the stroke width. | getStrokeWidth | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getTextAlignment() {} | (PECL imagick 2.0.0)<br/>
Returns the text alignment
@link https://php.net/manual/en/imagickdraw.gettextalignment.php
@return int one of the ALIGN_ constants and 0 if no align is set. | getTextAlignment | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getTextAntialias() {} | (PECL imagick 2.0.0)<br/>
Returns the current text antialias setting
@link https://php.net/manual/en/imagickdraw.gettextantialias.php
@return bool <b>TRUE</b> if text is antialiased and false if not. | getTextAntialias | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getVectorGraphics() {} | (PECL imagick 2.0.0)<br/>
Returns a string containing vector graphics
@link https://php.net/manual/en/imagickdraw.getvectorgraphics.php
@return string a string containing the vector graphics. | getVectorGraphics | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getTextUnderColor() {} | (PECL imagick 2.0.0)<br/>
Returns the text under color
@link https://php.net/manual/en/imagickdraw.gettextundercolor.php
@return ImagickPixel an ImagickPixel object describing the color.
@throws ImagickDrawException on error. | getTextUnderColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathClose() {} | (PECL imagick 2.0.0)<br/>
Adds a path element to the current path
@link https://php.net/manual/en/imagickdraw.pathclose.php
@return bool No value is returned. | pathClose | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathCurveToAbsolute($x1, $y1, $x2, $y2, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a cubic Bezier curve
@link https://php.net/manual/en/imagickdraw.pathcurvetoabsolute.php
@param float $x1 <p>
x coordinate of the first control point
</p>
@param float $y1 <p>
y coordinate of the first control point
</p>
@param float $x2 <p>
x coordinate of the second control point
</p>
@param float $y2 <p>
y coordinate of the first control point
</p>
@param float $x <p>
x coordinate of the curve end
</p>
@param float $y <p>
y coordinate of the curve end
</p>
@return bool No value is returned. | pathCurveToAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.