ImageMagick Image Driver.
This is the code documentation for the SproutCMS project
Search documentation |
class ImageMagickImageMagick Image Driver.
Extending this class<?php
/**
* New class description goes here
*
* @author Your Name, 2026-09-16
**/
class NewClassName extends ImageMagick {
/**
* Creates a temporary image and executes the given actions. By creating a
* temporary copy of the image before manipulating it, this process is atomic.
**/
public function process ($image, $actions, $dir, $file, $render) {
// Method code goes here
}
public function crop ($prop) {
// Method code goes here
}
public function flip ($dir) {
// Method code goes here
}
public function resize ($prop) {
// Method code goes here
}
public function rotate ($amt) {
// Method code goes here
}
public function sharpen ($amount) {
// Method code goes here
}
protected function properties () {
// Method code goes here
}
/**
* Attempts to detect the ImageMagick installation directory.
**/
public function __construct (array $config) {
// Method code goes here
}
}
?>
|
| Powered by Pelzini, version 0.9.0 |
Documentation is made available under the
GNU Free Documentation License 1.2. Generated: Tuesday, 15th September, 2026 at 10:26 am |
|