Imagick::setSizeOffset

(PECL imagick 2.0.0) Sets the size and offset of the Imagick object bool Imagick::setSizeOffset ( int $columns, int $rows, int $offset ) Sets the size and offset of the Imagick object. Set it before you read a raw image format such as RGB, GRAY, or CMYK. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Parameters: columns T

Imagick::setSize

(PECL imagick 2.0.0) Sets the size of the Imagick object bool Imagick::setSize ( int $columns, int $rows ) Sets the size of the Imagick object. Set it before you read a raw image format such as RGB, GRAY, or CMYK. Parameters: columns Sets the size of the Imagick object. Set it before you read a raw image format such as RGB, GRAY, or CMYK. rows

Imagick::setSamplingFactors

(PECL imagick 2.0.0) Sets the image sampling factors bool Imagick::setSamplingFactors ( array $factors ) Sets the image sampling factors. Parameters: factors Sets the image sampling factors. Returns: Returns TRUE on success. Examples: Imagick::setSamplingFactors() <?p

Imagick::setResourceLimit

(PECL imagick 2.0.0) Sets the limit for a particular resource in megabytes bool Imagick::setResourceLimit ( int $type, int $limit ) This method is used to modify the resource limits of the underlying ImageMagick library. Parameters: type Refer to the list of resourcetype constants. limit The resource limit. The unit depends on the type

Imagick::setResolution

(PECL imagick 2.0.0) Sets the image resolution bool Imagick::setResolution ( float $x_resolution, float $y_resolution ) Sets the image resolution. Parameters: x_resolution The horizontal resolution. y_resolution The vertical resolution. Returns: Returns TRUE on success.

Imagick::setRegistry

(No version information available, might only be in Git) Description public static void Imagick::setRegistry ( string $key, string $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. Parameters: key Sets the ImageMagick regis

Imagick::setProgressMonitor

(No version information available, might only be in Git) Description public void Imagick::setProgressMonitor ( callable $callback ) Set a callback that will be called during the processing of the Imagick image. Parameters: callback The progress function to call. It should return true if image processing should continue, or false if it should be cancelled. The offset para

Imagick::setPointSize

(PECL imagick 2.1.0) Sets point size bool Imagick::setPointSize ( float $point_size ) Sets object's point size property. This method can be used for example to set font size for caption: pseudo-format. This method is available if Imagick has been compiled against ImageMagick version 6.3.7 or newer. Parameters: point_size Point size Returns: Retur

Imagick::setPage

(PECL imagick 2.0.0) Sets the page geometry of the Imagick object bool Imagick::setPage ( int $width, int $height, int $x, int $y ) Sets the page geometry of the Imagick object. Parameters: width Sets the page geometry of the Imagick object. height Sets the page geometry of the Imagick object. x Sets

Imagick::setOption

(PECL imagick 2.0.0) Set an option bool Imagick::setOption ( string $key, string $value ) Associates one or more options with the wand. Parameters: key Associates one or more options with the wand. value Associates one or more options with the wand. Returns: Returns TRUE on success.