ImagickPixel::getColorCount

(PECL imagick 2.0.0) Returns the color count associated with this color int ImagickPixel::getColorCount ( void ) Returns the color count associated with this color. Returns: Returns the color count as an integer on success, throws ImagickPixelException on failure. This function is currently not documented; only its argument list is available.

ImagickPixel::getColorAsString

(PECL imagick 2.1.0) Returns the color as a string string ImagickPixel::getColorAsString ( void ) Returns the color of the ImagickPixel object as a string. Returns: Returns the color of the ImagickPixel object as a string. Notes: Alpha not returned This function does not return the alpha value of the color in the string.

ImagickPixel::getColor

(PECL imagick 2.0.0) Returns the color array ImagickPixel::getColor ([ bool $normalized = false ] ) Returns the color described by the ImagickPixel object, as an array. If the color has an opacity channel set, this is provided as a fourth value in the list. Parameters: normalized Normalize the color values Returns: An array of channel values, ea

ImagickPixel::destroy

(PECL imagick 2.0.0) Deallocates resources associated with this object bool ImagickPixel::destroy ( void ) Deallocates any resources used by the ImagickPixel object, and unsets any associated color. The object should not be used after the destroy function has been called. Returns: Returns TRUE on success. This function is currently not documented; only its argu

ImagickPixel::__construct

(PECL imagick 2.0.0) The ImagickPixel constructor ImagickPixel::__construct ([ string $color ] ) Constructs an ImagickPixel object. If a color is specified, the object is constructed and then initialised with that color before being returned. Parameters: color The optional color string to use as the initial value of this object. Returns: Returns

ImagickPixel::clear

(PECL imagick 2.0.0) Clears resources associated with this object bool ImagickPixel::clear ( void ) Clears the ImagickPixel object, leaving it in a fresh state. This also unsets any color associated with the object. Returns: Returns TRUE on success. This function is currently not documented; only its argument list is available.

ImagickDraw::translate

(PECL imagick 2.0.0) Applies a translation to the current coordinate system bool ImagickDraw::translate ( float $x, float $y ) Applies a translation to the current coordinate system which moves the coordinate system origin to the specified coordinate. Parameters: x horizontal translation y vertical translation Return

ImagickDraw::skewY

(PECL imagick 2.0.0) Skews the current coordinate system in the vertical direction bool ImagickDraw::skewY ( float $degrees ) Skews the current coordinate system in the vertical direction. Parameters: degrees degrees to skew Returns: No value is returned. This function is currently not documented; only its arg

ImagickDraw::skewX

(PECL imagick 2.0.0) Skews the current coordinate system in the horizontal direction bool ImagickDraw::skewX ( float $degrees ) Skews the current coordinate system in the horizontal direction. Parameters: degrees degrees to skew Returns: No value is returned. This function is currently not documented; only its

ImagickDraw::setViewbox

(PECL imagick 2.0.0) Sets the overall canvas size bool ImagickDraw::setViewbox ( int $x1, int $y1, int $x2, int $y2 ) Sets the overall canvas size to be recorded with the drawing vector data. Usually this will be specified using the same size as the canvas image. When the vector data is saved to SVG or MVG formats, the viewbox is use to specify the size of the canvas image that a viewer will render the vector data on.