From 6d423c9f9b01b60ae3f4391a65092b11cbd0c774 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Tue, 19 Oct 2010 05:04:00 +0000 Subject: [PATCH] ENHANCEMENT #3775 Added getter to GD so you can retrieve the internal GD resource being used. Made setGD public so you can override the GD yourself as well (from r111887) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112937 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- filesystem/GD.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/filesystem/GD.php b/filesystem/GD.php index ea5451579..841fd93d1 100755 --- a/filesystem/GD.php +++ b/filesystem/GD.php @@ -27,12 +27,17 @@ class GD extends Object { $this->quality = self::$default_quality; parent::__construct(); } - protected function setGD($gd) { + + public function setGD($gd) { $this->gd = $gd; $this->width = imagesx($gd); $this->height = imagesy($gd); } - + + public function getGD() { + return $this->gd; + } + /** * Set the default image quality. * @param quality int A number from 0 to 100, 100 being the best quality.