Grafika\Gd\Image::__clone PHP Method

__clone() public method

Method called when 'clone' keyword is used.
public __clone ( )
    public function __clone()
    {
        $original = $this->gd;
        $copy = imagecreatetruecolor($this->width, $this->height);
        imagecopy($copy, $original, 0, 0, 0, 0, $this->width, $this->height);
        $this->gd = $copy;
    }