SproutCMS

This is the code documentation for the SproutCMS project

class GraphicsMagick

GraphicsMagick Image Driver.

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends GraphicsMagick {
    
    protected function properties () {
        // Method code goes here
    }
    
    public function rotate ($amt) {
        // Method code goes here
    }
    
    public function sharpen ($amount) {
        // Method code goes here
    }
    
    public function resize ($prop) {
        // Method code goes here
    }
    
    public function flip ($dir) {
        // Method code goes here
    }
    
    public function crop ($prop) {
        // Method code goes here
    }
    
    /**
    * 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
    }
    
    /**
    * Attempts to detect the GraphicsMagick installation directory.
    **/
    public function __construct (array $config) {
        // Method code goes here
    }
    
}
?>