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 pathCurveToRelative($x1, $y1, $x2, $y2, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a cubic Bezier curve
@link https://php.net/manual/en/imagickdraw.pathcurvetorelative.php
@param float $x1 <p>
x coordinate of starting control point
</p>
@param float $y1 <p>
y coordinate of starting control point
</p>
@param float $x2 <p>
x coordinate of ending control point
</p>
@param float $y2 <p>
y coordinate of ending control point
</p>
@param float $x <p>
ending x coordinate
</p>
@param float $y <p>
ending y coordinate
</p>
@return bool No value is returned. | pathCurveToRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathCurveToQuadraticBezierAbsolute($x1, $y1, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a quadratic Bezier curve
@link https://php.net/manual/en/imagickdraw.pathcurvetoquadraticbezierabsolute.php
@param float $x1 <p>
x coordinate of the control point
</p>
@param float $y1 <p>
y coordinate of the control point
</p>
@param float $x <p>
x coordinate of the end point
</p>
@param float $y <p>
y coordinate of the end point
</p>
@return bool No value is returned. | pathCurveToQuadraticBezierAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathCurveToQuadraticBezierRelative($x1, $y1, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a quadratic Bezier curve
@link https://php.net/manual/en/imagickdraw.pathcurvetoquadraticbezierrelative.php
@param float $x1 <p>
starting x coordinate
</p>
@param float $y1 <p>
starting y coordinate
</p>
@param float $x <p>
ending x coordinate
</p>
@param float $y <p>
ending y coordinate
</p>
@return bool No value is returned. | pathCurveToQuadraticBezierRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathCurveToQuadraticBezierSmoothAbsolute($x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a quadratic Bezier curve
@link https://php.net/manual/en/imagickdraw.pathcurvetoquadraticbeziersmoothabsolute.php
@param float $x <p>
ending x coordinate
</p>
@param float $y <p>
ending y coordinate
</p>
@return bool No value is returned. | pathCurveToQuadraticBezierSmoothAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathCurveToQuadraticBezierSmoothRelative($x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a quadratic Bezier curve
@link https://php.net/manual/en/imagickdraw.pathcurvetoquadraticbeziersmoothrelative.php
@param float $x <p>
ending x coordinate
</p>
@param float $y <p>
ending y coordinate
</p>
@return bool No value is returned. | pathCurveToQuadraticBezierSmoothRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathCurveToSmoothAbsolute($x2, $y2, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a cubic Bezier curve
@link https://php.net/manual/en/imagickdraw.pathcurvetosmoothabsolute.php
@param float $x2 <p>
x coordinate of the second control point
</p>
@param float $y2 <p>
y coordinate of the second control point
</p>
@param float $x <p>
x coordinate of the ending point
</p>
@param float $y <p>
y coordinate of the ending point
</p>
@return bool No value is returned. | pathCurveToSmoothAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathCurveToSmoothRelative($x2, $y2, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a cubic Bezier curve
@link https://php.net/manual/en/imagickdraw.pathcurvetosmoothrelative.php
@param float $x2 <p>
x coordinate of the second control point
</p>
@param float $y2 <p>
y coordinate of the second control point
</p>
@param float $x <p>
x coordinate of the ending point
</p>
@param float $y <p>
y coordinate of the ending point
</p>
@return bool No value is returned. | pathCurveToSmoothRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathEllipticArcAbsolute($rx, $ry, $x_axis_rotation, $large_arc_flag, $sweep_flag, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws an elliptical arc
@link https://php.net/manual/en/imagickdraw.pathellipticarcabsolute.php
@param float $rx <p>
x radius
</p>
@param float $ry <p>
y radius
</p>
@param float $x_axis_rotation <p>
x axis rotation
</p>
@param bool $large_arc_flag <p>
large arc flag
</p>
@param bool $sweep_flag <p>
sweep flag
</p>
@param float $x <p>
x coordinate
</p>
@param float $y <p>
y coordinate
</p>
@return bool No value is returned. | pathEllipticArcAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathEllipticArcRelative($rx, $ry, $x_axis_rotation, $large_arc_flag, $sweep_flag, $x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws an elliptical arc
@link https://php.net/manual/en/imagickdraw.pathellipticarcrelative.php
@param float $rx <p>
x radius
</p>
@param float $ry <p>
y radius
</p>
@param float $x_axis_rotation <p>
x axis rotation
</p>
@param bool $large_arc_flag <p>
large arc flag
</p>
@param bool $sweep_flag <p>
sweep flag
</p>
@param float $x <p>
x coordinate
</p>
@param float $y <p>
y coordinate
</p>
@return bool No value is returned. | pathEllipticArcRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathFinish() {} | (PECL imagick 2.0.0)<br/>
Terminates the current path
@link https://php.net/manual/en/imagickdraw.pathfinish.php
@return bool No value is returned. | pathFinish | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathLineToAbsolute($x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a line path
@link https://php.net/manual/en/imagickdraw.pathlinetoabsolute.php
@param float $x <p>
starting x coordinate
</p>
@param float $y <p>
ending x coordinate
</p>
@return bool No value is returned. | pathLineToAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathLineToRelative($x, $y) {} | (PECL imagick 2.0.0)<br/>
Draws a line path
@link https://php.net/manual/en/imagickdraw.pathlinetorelative.php
@param float $x <p>
starting x coordinate
</p>
@param float $y <p>
starting y coordinate
</p>
@return bool No value is returned. | pathLineToRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathLineToHorizontalAbsolute($x) {} | (PECL imagick 2.0.0)<br/>
Draws a horizontal line path
@link https://php.net/manual/en/imagickdraw.pathlinetohorizontalabsolute.php
@param float $x <p>
x coordinate
</p>
@return bool No value is returned. | pathLineToHorizontalAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathLineToHorizontalRelative($x) {} | (PECL imagick 2.0.0)<br/>
Draws a horizontal line
@link https://php.net/manual/en/imagickdraw.pathlinetohorizontalrelative.php
@param float $x <p>
x coordinate
</p>
@return bool No value is returned. | pathLineToHorizontalRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathLineToVerticalAbsolute($y) {} | (PECL imagick 2.0.0)<br/>
Draws a vertical line
@link https://php.net/manual/en/imagickdraw.pathlinetoverticalabsolute.php
@param float $y <p>
y coordinate
</p>
@return bool No value is returned. | pathLineToVerticalAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathLineToVerticalRelative($y) {} | (PECL imagick 2.0.0)<br/>
Draws a vertical line path
@link https://php.net/manual/en/imagickdraw.pathlinetoverticalrelative.php
@param float $y <p>
y coordinate
</p>
@return bool No value is returned. | pathLineToVerticalRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathMoveToAbsolute($x, $y) {} | (PECL imagick 2.0.0)<br/>
Starts a new sub-path
@link https://php.net/manual/en/imagickdraw.pathmovetoabsolute.php
@param float $x <p>
x coordinate of the starting point
</p>
@param float $y <p>
y coordinate of the starting point
</p>
@return bool No value is returned. | pathMoveToAbsolute | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathMoveToRelative($x, $y) {} | (PECL imagick 2.0.0)<br/>
Starts a new sub-path
@link https://php.net/manual/en/imagickdraw.pathmovetorelative.php
@param float $x <p>
target x coordinate
</p>
@param float $y <p>
target y coordinate
</p>
@return bool No value is returned. | pathMoveToRelative | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pathStart() {} | (PECL imagick 2.0.0)<br/>
Declares the start of a path drawing list
@link https://php.net/manual/en/imagickdraw.pathstart.php
@return bool No value is returned. | pathStart | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function polyline(array $coordinates) {} | (PECL imagick 2.0.0)<br/>
Draws a polyline
@link https://php.net/manual/en/imagickdraw.polyline.php
@param array $coordinates <p>
array of x and y coordinates: array( array( 'x' => 4, 'y' => 6 ), array( 'x' => 8, 'y' => 10 ) )
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickDrawException on error. | polyline | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function popClipPath() {} | (PECL imagick 2.0.0)<br/>
Terminates a clip path definition
@link https://php.net/manual/en/imagickdraw.popclippath.php
@return bool No value is returned. | popClipPath | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function popDefs() {} | (PECL imagick 2.0.0)<br/>
Terminates a definition list
@link https://php.net/manual/en/imagickdraw.popdefs.php
@return bool No value is returned. | popDefs | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function popPattern() {} | (PECL imagick 2.0.0)<br/>
Terminates a pattern definition
@link https://php.net/manual/en/imagickdraw.poppattern.php
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@throws ImagickException on error. | popPattern | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pushClipPath($clip_mask_id) {} | (PECL imagick 2.0.0)<br/>
Starts a clip path definition
@link https://php.net/manual/en/imagickdraw.pushclippath.php
@param string $clip_mask_id <p>
Clip mask Id
</p>
@return bool No value is returned. | pushClipPath | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pushDefs() {} | (PECL imagick 2.0.0)<br/>
Indicates that following commands create named elements for early processing
@link https://php.net/manual/en/imagickdraw.pushdefs.php
@return bool No value is returned. | pushDefs | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pushPattern($pattern_id, $x, $y, $width, $height) {} | (PECL imagick 2.0.0)<br/>
Indicates that subsequent commands up to a ImagickDraw::opPattern() command comprise the definition of a named pattern
@link https://php.net/manual/en/imagickdraw.pushpattern.php
@param string $pattern_id <p>
the pattern Id
</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 pattern
</p>
@param float $height <p>
height of the pattern
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. | pushPattern | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function render() {} | (PECL imagick 2.0.0)<br/>
Renders all preceding drawing commands onto the image
@link https://php.net/manual/en/imagickdraw.render.php
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@throws ImagickException on error. | render | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function rotate($degrees) {} | (PECL imagick 2.0.0)<br/>
Applies the specified rotation to the current coordinate space
@link https://php.net/manual/en/imagickdraw.rotate.php
@param float $degrees <p>
degrees to rotate
</p>
@return bool No value is returned. | rotate | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function scale($x, $y) {} | (PECL imagick 2.0.0)<br/>
Adjusts the scaling factor
@link https://php.net/manual/en/imagickdraw.scale.php
@param float $x <p>
horizontal factor
</p>
@param float $y <p>
vertical factor
</p>
@return bool No value is returned. | scale | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setClipPath($clip_mask) {} | (PECL imagick 2.0.0)<br/>
Associates a named clipping path with the image
@link https://php.net/manual/en/imagickdraw.setclippath.php
@param string $clip_mask <p>
the clipping path name
</p>
@return bool No value is returned.
@throws ImagickException on error. | setClipPath | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setClipRule($fill_rule) {} | (PECL imagick 2.0.0)<br/>
Set the polygon fill rule to be used by the clipping path
@link https://php.net/manual/en/imagickdraw.setcliprule.php
@param int $fill_rule <p>
FILLRULE_ constant
</p>
@return bool No value is returned. | setClipRule | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setClipUnits($clip_units) {} | (PECL imagick 2.0.0)<br/>
Sets the interpretation of clip path units
@link https://php.net/manual/en/imagickdraw.setclipunits.php
@param int $clip_units <p>
the number of clip units
</p>
@return bool No value is returned. | setClipUnits | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFillOpacity($fillOpacity) {} | (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.setfillopacity.php
@param float $fillOpacity <p>
the fill opacity
</p>
@return bool No value is returned. | setFillOpacity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFillPatternURL($fill_url) {} | (PECL imagick 2.0.0)<br/>
Sets the URL to use as a fill pattern for filling objects
@link https://php.net/manual/en/imagickdraw.setfillpatternurl.php
@param string $fill_url <p>
URL to use to obtain fill pattern.
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@throws ImagickException on error. | setFillPatternURL | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFillRule($fill_rule) {} | (PECL imagick 2.0.0)<br/>
Sets the fill rule to use while drawing polygons
@link https://php.net/manual/en/imagickdraw.setfillrule.php
@param int $fill_rule <p>
FILLRULE_ constant
</p>
@return bool No value is returned. | setFillRule | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeDashOffset($dash_offset) {} | (PECL imagick 2.0.0)<br/>
Specifies the offset into the dash pattern to start the dash
@link https://php.net/manual/en/imagickdraw.setstrokedashoffset.php
@param float $dash_offset <p>
dash offset
</p>
@return bool No value is returned. | setStrokeDashOffset | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeLineCap($linecap) {} | (PECL imagick 2.0.0)<br/>
Specifies the shape to be used at the end of open subpaths when they are stroked
@link https://php.net/manual/en/imagickdraw.setstrokelinecap.php
@param int $linecap <p>
LINECAP_ constant
</p>
@return bool No value is returned. | setStrokeLineCap | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeLineJoin($linejoin) {} | (PECL imagick 2.0.0)<br/>
Specifies the shape to be used at the corners of paths when they are stroked
@link https://php.net/manual/en/imagickdraw.setstrokelinejoin.php
@param int $linejoin <p>
LINEJOIN_ constant
</p>
@return bool No value is returned. | setStrokeLineJoin | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeMiterLimit($miterlimit) {} | (PECL imagick 2.0.0)<br/>
Specifies the miter limit
@link https://php.net/manual/en/imagickdraw.setstrokemiterlimit.php
@param int $miterlimit <p>
the miter limit
</p>
@return bool No value is returned. | setStrokeMiterLimit | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeOpacity($stroke_opacity) {} | (PECL imagick 2.0.0)<br/>
Specifies the opacity of stroked object outlines
@link https://php.net/manual/en/imagickdraw.setstrokeopacity.php
@param float $stroke_opacity <p>
stroke opacity. 1.0 is fully opaque
</p>
@return bool No value is returned. | setStrokeOpacity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setVectorGraphics($xml) {} | (PECL imagick 2.0.0)<br/>
Sets the vector graphics
@link https://php.net/manual/en/imagickdraw.setvectorgraphics.php
@param string $xml <p>
xml containing the vector graphics
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure. | setVectorGraphics | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function pop() {} | (PECL imagick 2.0.0)<br/>
Destroys the current ImagickDraw in the stack, and returns to the previously pushed ImagickDraw
@link https://php.net/manual/en/imagickdraw.pop.php
@return bool <b>TRUE</b> on success and false on failure.
@throws ImagickException on error. | pop | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function push() {} | (PECL imagick 2.0.0)<br/>
Clones the current ImagickDraw and pushes it to the stack
@link https://php.net/manual/en/imagickdraw.push.php
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@throws ImagickException on error. | push | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setStrokeDashArray(array $dashArray) {} | (PECL imagick 2.0.0)<br/>
Specifies the pattern of dashes and gaps used to stroke paths
@link https://php.net/manual/en/imagickdraw.setstrokedasharray.php
@param array $dashArray <p>
array of floats
</p>
@return bool <b>TRUE</b> on success. | setStrokeDashArray | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setOpacity($opacity) {} | Sets the opacity to use when drawing using the fill or stroke color or texture. Fully opaque is 1.0.
@param float $opacity
@return void
@since 3.4.1 | setOpacity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getOpacity() {} | Returns the opacity used when drawing with the fill or stroke color or texture. Fully opaque is 1.0.
@return float
@since 3.4.1 | getOpacity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setFontResolution($x, $y) {} | Sets the image font resolution.
@param float $x
@param float $y
@return bool
@throws ImagickException on error.
@since 3.4.1 | setFontResolution | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFontResolution() {} | Gets the image X and Y resolution.
@return array
@throws ImagickException on error.
@since 3.4.1 | getFontResolution | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getTextDirection() {} | Returns the direction that will be used when annotating with text.
@return bool
@since 3.4.1 | getTextDirection | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setTextDirection($direction) {} | Sets the font style to use when annotating with text. The AnyStyle enumeration acts as a wild-card "don't care" option.
@param int $direction
@return bool
@since 3.4.1 | setTextDirection | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getBorderColor() {} | Returns the border color used for drawing bordered objects.
@return ImagickPixel
@since 3.4.1 | getBorderColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setBorderColor(ImagickPixel $color) {} | Sets the border color to be used for drawing bordered objects.
@param ImagickPixel $color
@return bool
@throws ImagickDrawException on error.
@since 3.4.1 | setBorderColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getDensity() {} | Obtains the vertical and horizontal resolution.
@return string|null
@since 3.4.1 | getDensity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setDensity($density_string) {} | Sets the vertical and horizontal resolution.
@param string $density_string
@return bool
@throws ImagickException on error.
@since 3.4.1 | setDensity | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function __construct(Imagick $wand) {} | (PECL imagick 2.0.0)<br/>
The ImagickPixelIterator constructor
@link https://php.net/manual/en/imagickpixeliterator.construct.php
@param Imagick $wand
@throws ImagickPixelIteratorException on error.
@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 newPixelIterator(Imagick $wand) {} | (PECL imagick 2.0.0)<br/>
Returns a new pixel iterator
@link https://php.net/manual/en/imagickpixeliterator.newpixeliterator.php
@param Imagick $wand
@return bool <b>TRUE</b> on success. Throwing ImagickPixelIteratorException.
@throws ImagickPixelIteratorException
@throws ImagickException | newPixelIterator | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function newPixelRegionIterator(Imagick $wand, $x, $y, $columns, $rows) {} | (PECL imagick 2.0.0)<br/>
Returns a new pixel iterator
@link https://php.net/manual/en/imagickpixeliterator.newpixelregioniterator.php
@param Imagick $wand
@param int $x
@param int $y
@param int $columns
@param int $rows
@return bool a new ImagickPixelIterator on success; on failure, throws ImagickPixelIteratorException
@throws ImagickPixelIteratorException
@throws ImagickException | newPixelRegionIterator | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getIteratorRow() {} | (PECL imagick 2.0.0)<br/>
Returns the current pixel iterator row
@link https://php.net/manual/en/imagickpixeliterator.getiteratorrow.php
@return int the integer offset of the row, throwing ImagickPixelIteratorException on error.
@throws ImagickPixelIteratorException on error | getIteratorRow | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setIteratorRow($row) {} | (PECL imagick 2.0.0)<br/>
Set the pixel iterator row
@link https://php.net/manual/en/imagickpixeliterator.setiteratorrow.php
@param int $row
@return bool <b>TRUE</b> on success.
@throws ImagickPixelIteratorException on error. | setIteratorRow | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setIteratorFirstRow() {} | (PECL imagick 2.0.0)<br/>
Sets the pixel iterator to the first pixel row
@link https://php.net/manual/en/imagickpixeliterator.setiteratorfirstrow.php
@return bool <b>TRUE</b> on success.
@throws ImagickPixelIteratorException on error. | setIteratorFirstRow | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setIteratorLastRow() {} | (PECL imagick 2.0.0)<br/>
Sets the pixel iterator to the last pixel row
@link https://php.net/manual/en/imagickpixeliterator.setiteratorlastrow.php
@return bool <b>TRUE</b> on success.
@throws ImagickPixelIteratorException on error. | setIteratorLastRow | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getPreviousIteratorRow() {} | (PECL imagick 2.0.0)<br/>
Returns the previous row
@link https://php.net/manual/en/imagickpixeliterator.getpreviousiteratorrow.php
@return array the previous row as an array of ImagickPixelWand objects from the
ImagickPixelIterator, throwing ImagickPixelIteratorException on error.
@throws ImagickPixelIteratorException on error | getPreviousIteratorRow | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getCurrentIteratorRow() {} | (PECL imagick 2.0.0)<br/>
Returns the current row of ImagickPixel objects
@link https://php.net/manual/en/imagickpixeliterator.getcurrentiteratorrow.php
@return array a row as an array of ImagickPixel objects that can themselves be iterated.
@throws ImagickPixelIteratorException on error. | getCurrentIteratorRow | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getNextIteratorRow() {} | (PECL imagick 2.0.0)<br/>
Returns the next row of the pixel iterator
@link https://php.net/manual/en/imagickpixeliterator.getnextiteratorrow.php
@return array the next row as an array of ImagickPixel objects, throwing
ImagickPixelIteratorException on error.
@throws ImagickPixelIteratorException on error | getNextIteratorRow | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function resetIterator() {} | (PECL imagick 2.0.0)<br/>
Resets the pixel iterator
@link https://php.net/manual/en/imagickpixeliterator.resetiterator.php
@return bool <b>TRUE</b> on success.
@throws ImagickPixelIteratorException on error. | resetIterator | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function syncIterator() {} | (PECL imagick 2.0.0)<br/>
Syncs the pixel iterator
@link https://php.net/manual/en/imagickpixeliterator.synciterator.php
@return bool <b>TRUE</b> on success.
@throws ImagickPixelIteratorException on error. | syncIterator | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getHSL() {} | (PECL imagick 2.0.0)<br/>
Returns the normalized HSL color of the ImagickPixel object
@link https://php.net/manual/en/imagickpixel.gethsl.php
@return float[] the HSL value in an array with the keys "hue",
"saturation", and "luminosity". Throws ImagickPixelException on failure.
@throws ImagickPixelException on failure | getHSL | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setHSL($hue, $saturation, $luminosity) {} | (PECL imagick 2.0.0)<br/>
Sets the normalized HSL color
@link https://php.net/manual/en/imagickpixel.sethsl.php
@param float $hue <p>
The normalized value for hue, described as a fractional arc
(between 0 and 1) of the hue circle, where the zero value is
red.
</p>
@param float $saturation <p>
The normalized value for saturation, with 1 as full saturation.
</p>
@param float $luminosity <p>
The normalized value for luminosity, on a scale from black at
0 to white at 1, with the full HS value at 0.5 luminosity.
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickPixelException on failure | setHSL | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getIndex() {} | Gets the colormap index of the pixel wand.
@throws ImagickPixelException on failure | getIndex | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function __construct($color = null) {} | (PECL imagick 2.0.0)<br/>
The ImagickPixel constructor
@link https://php.net/manual/en/imagickpixel.construct.php
@param string $color [optional] <p>
The optional color string to use as the initial value of this object.
</p>
@throws ImagickPixelException on failure | __construct | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setColor($color) {} | (PECL imagick 2.0.0)<br/>
Sets the color
@link https://php.net/manual/en/imagickpixel.setcolor.php
@param string $color <p>
The color definition to use in order to initialise the
ImagickPixel object.
</p>
@return bool <b>TRUE</b> if the specified color was set, <b>FALSE</b> otherwise.
@throws ImagickPixelException on failure | setColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setColorValue($color, $value) {} | (PECL imagick 2.0.0)<br/>
Sets the normalized value of one of the channels
@link https://php.net/manual/en/imagickpixel.setcolorvalue.php
@param int $color <p>
One of the Imagick color constants e.g. \Imagick::COLOR_GREEN or \Imagick::COLOR_ALPHA.
</p>
@param float $value <p>
The value to set this channel to, ranging from 0 to 1.
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickPixelException on failure | setColorValue | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getColorValue($color) {} | (PECL imagick 2.0.0)<br/>
Gets the normalized value of the provided color channel
@link https://php.net/manual/en/imagickpixel.getcolorvalue.php
@param int $color <p>
The color to get the value of, specified as one of the Imagick color
constants. This can be one of the RGB colors, CMYK colors, alpha and
opacity e.g (Imagick::COLOR_BLUE, Imagick::COLOR_MAGENTA).
</p>
@return float The value of the channel, as a normalized floating-point number, throwing
ImagickPixelException on error.
@throws ImagickPixelException on error | getColorValue | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function isSimilar(ImagickPixel $color, $fuzz) {} | (PECL imagick 2.0.0)<br/>
Check the distance between this color and another
@link https://php.net/manual/en/imagickpixel.issimilar.php
@param ImagickPixel $color <p>
The ImagickPixel object to compare this object against.
</p>
@param float $fuzz <p>
The maximum distance within which to consider these colors as similar.
The theoretical maximum for this value is the square root of three
(1.732).
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickPixelException on failure | isSimilar | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function isPixelSimilar(ImagickPixel $color, $fuzz) {} | (No version information available, might only be in SVN)<br/>
Check the distance between this color and another
@link https://php.net/manual/en/imagickpixel.ispixelsimilar.php
@param ImagickPixel $color <p>
The ImagickPixel object to compare this object against.
</p>
@param float $fuzz <p>
The maximum distance within which to consider these colors as similar.
The theoretical maximum for this value is the square root of three
(1.732).
</p>
@return bool <b>TRUE</b> on success.
@throws ImagickPixelException on failure | isPixelSimilar | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getColor($normalized = 0) {} | (PECL imagick 2.0.0)<br/>
Returns the color
@link https://php.net/manual/en/imagickpixel.getcolor.php
@param int $normalized [optional] <p>
Normalize the color values
</p>
@return array An array of channel values, each normalized if <b>TRUE</b> is given as param. Throws
ImagickPixelException on error.
@throws ImagickPixelException on error. | getColor | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getColorAsString() {} | (PECL imagick 2.1.0)<br/>
Returns the color as a string
@link https://php.net/manual/en/imagickpixel.getcolorasstring.php
@return string the color of the ImagickPixel object as a string.
@throws ImagickPixelException on failure | getColorAsString | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getColorCount() {} | (PECL imagick 2.0.0)<br/>
Returns the color count associated with this color
@link https://php.net/manual/en/imagickpixel.getcolorcount.php
@return int the color count as an integer on success, throws
ImagickPixelException on failure.
@throws ImagickPixelException on failure. | getColorCount | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function isPixelSimilarQuantum($color, $fuzz) {} | Returns true if the distance between two colors is less than the specified distance. The fuzz value should be in the range 0-QuantumRange.<br>
The maximum value represents the longest possible distance in the colorspace. e.g. from RGB(0, 0, 0) to RGB(255, 255, 255) for the RGB colorspace
@link https://php.net/manual/en/imagickpixel.ispixelsimilarquantum.php
@param string $color
@param string $fuzz
@return bool
@throws ImagickPixelException on failure
@since 3.3.0 | isPixelSimilarQuantum | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getColorQuantum() {} | Returns the color of the pixel in an array as Quantum values. If ImageMagick was compiled as HDRI these will be floats, otherwise they will be integers.
@link https://php.net/manual/en/imagickpixel.getcolorquantum.php
@return mixed The quantum value of the color element. Float if ImageMagick was compiled with HDRI, otherwise an int.
@throws ImagickPixelException on failure
@since 3.3.0 | getColorQuantum | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function setColorFromPixel(ImagickPixel $srcPixel) {} | Sets the color count associated with this color from another ImagickPixel object.
@param ImagickPixel $srcPixel
@return bool
@throws ImagickPixelException on failure
@since 3.4.1 | setColorFromPixel | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function addKernel(ImagickKernel $imagickKernel) {} | Attach another kernel to this kernel to allow them to both be applied in a single morphology or filter function. Returns the new combined kernel.
@link https://php.net/manual/en/imagickkernel.addkernel.php
@param ImagickKernel $imagickKernel
@return void
@throws ImagickKernelException on error
@since 3.3.0 | addKernel | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function addUnityKernel() {} | Adds a given amount of the 'Unity' Convolution Kernel to the given pre-scaled and normalized Kernel. This in effect adds that amount of the original image into the resulting convolution kernel. The resulting effect is to convert the defined kernels into blended soft-blurs, unsharp kernels or into sharpening kernels.
@link https://php.net/manual/en/imagickkernel.addunitykernel.php
@return void
@throws ImagickKernelException on error
@since 3.3.0 | addUnityKernel | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getMatrix() {} | Get the 2d matrix of values used in this kernel. The elements are either float for elements that are used or 'false' if the element should be skipped.
@link https://php.net/manual/en/imagickkernel.getmatrix.php
@return array A matrix (2d array) of the values that represent the kernel.
@throws ImagickKernelException on error
@since 3.3.0 | getMatrix | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function scale() {} | ScaleKernelInfo() scales the given kernel list by the given amount, with or without normalization of the sum of the kernel values (as per given flags).<br>
The exact behaviour of this function depends on the normalization type being used please see https://www.imagemagick.org/api/morphology.php#ScaleKernelInfo for details.<br>
Flag should be one of Imagick::NORMALIZE_KERNEL_VALUE, Imagick::NORMALIZE_KERNEL_CORRELATE, Imagick::NORMALIZE_KERNEL_PERCENT or not set.
@link https://php.net/manual/en/imagickkernel.scale.php
@see https://www.imagemagick.org/api/morphology.php#ScaleKernelInfo
@return void
@throws ImagickKernelException on error
@since 3.3.0 | scale | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function seperate() {} | Separates a linked set of kernels and returns an array of ImagickKernels.
@link https://php.net/manual/en/imagickkernel.separate.php
@return void
@throws ImagickKernelException on error
@since 3.3.0 | seperate | php | JetBrains/phpstorm-stubs | imagick/imagick.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/imagick/imagick.php | Apache-2.0 |
public function getFromNeuron() {} | Returns the postions of starting neuron.
@return int The postions of starting neuron. | getFromNeuron | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
public function getToNeuron() {} | Returns the postions of terminating neuron
@return int The postions of terminating neuron. | getToNeuron | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_cascadetrain_on_data($ann, $data, $max_neurons, $neurons_between_reports, $desired_error) {} | Trains on an entire dataset, for a period of time using the Cascade2 training algorithm
@param resource $ann
@param resource $data
@param int $max_neurons
@param int $neurons_between_reports
@param float $desired_error
@return bool | fann_cascadetrain_on_data | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_cascadetrain_on_file($ann, $filename, $max_neurons, $neurons_between_reports, $desired_error) {} | Trains on an entire dataset read from file, for a period of time using the Cascade2 training algorithm.
@param resource $ann
@param string $filename
@param int $max_neurons
@param int $neurons_between_reports
@param float $desired_error
@return bool | fann_cascadetrain_on_file | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_copy($ann) {} | Creates a copy of a fann structure
@param resource $ann
@return resource|false Returns a copy of neural network resource on success, or false on error | fann_copy | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_from_file($configuration_file) {} | Constructs a backpropagation neural network from a configuration file
@param string $configuration_file
@return resource|false | fann_create_from_file | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_shortcut_array($num_layers, $layers) {} | Creates a standard backpropagation neural network which is not fully connectected and has shortcut connections
@param int $num_layers
@param array $layers
@return resource|false Returns a neural network resource on success, or false on error. | fann_create_shortcut_array | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_shortcut($num_layers, $num_neurons1, $num_neurons2, ...$_) {} | Creates a standard backpropagation neural network which is not fully connectected and has shortcut connections
@param int $num_layers
@param int $num_neurons1
@param int $num_neurons2
@param int ...$_
@return resource|false Returns a neural network resource on success, or false on error. | fann_create_shortcut | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_sparse_array($connection_rate, $num_layers, $layers) {} | Creates a standard backpropagation neural network, which is not fully connected using an array of layer sizes
@param float $connection_rate
@param int $num_layers
@param array $layers
@return resource|false Returns a neural network resource on success, or false on error. | fann_create_sparse_array | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_sparse($connection_rate, $num_layers, $num_neurons1, $num_neurons2, ...$_) {} | Creates a standard backpropagation neural network, which is not fully connected
@param float $connection_rate
@param int $num_layers
@param int $num_neurons1
@param int $num_neurons2
@param int ...$_
@return resource|false Returns a neural network resource on success, or false on error. | fann_create_sparse | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_standard_array($num_layers, $layers) {} | Creates a standard fully connected backpropagation neural network using an array of layer sizes
@param int $num_layers
@param array $layers
@return resource|false Returns a neural network resource on success, or false on error. | fann_create_standard_array | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_standard($num_layers, $num_neurons1, $num_neurons2, ...$_) {} | Creates a standard fully connected backpropagation neural network
@param int $num_layers
@param int $num_neurons1
@param int $num_neurons2
@param int ...$_
@return resource|false Returns a neural network resource on success, or false on error. | fann_create_standard | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_train_from_callback($num_data, $num_input, $num_output, $user_function) {} | Creates the training data struct from a user supplied function
@param int $num_data
@param int $num_input
@param int $num_output
@param callable $user_function
@return resource|false | fann_create_train_from_callback | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
function fann_create_train($num_data, $num_input, $num_output) {} | Creates an empty training data struct
@param int $num_data
@param int $num_input
@param int $num_output
@return resource|false | fann_create_train | php | JetBrains/phpstorm-stubs | fann/fann.php | https://github.com/JetBrains/phpstorm-stubs/blob/master/fann/fann.php | Apache-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.