summaryrefslogtreecommitdiffstats
path: root/system/libraries/Image_lib.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-01-12 18:04:10 +0100
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-01-12 18:04:10 +0100
commitfc514ca3578c59753e059fd6b8a2415424850535 (patch)
treeca77060473bd78616ca157b8a674a1f420c8e015 /system/libraries/Image_lib.php
parent1e42cdc1d3b4c919e0e4dec6a2ce81c360e946af (diff)
parent8f80bc4f855f78efbcb6344ea29cf67647b6772b (diff)
Merge pull request #846 from aquariuz/develop
fixed 2 bugs
Diffstat (limited to 'system/libraries/Image_lib.php')
-rw-r--r--system/libraries/Image_lib.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Image_lib.php b/system/libraries/Image_lib.php
index dc7d362ce..a226ae8f8 100644
--- a/system/libraries/Image_lib.php
+++ b/system/libraries/Image_lib.php
@@ -1091,7 +1091,7 @@ class CI_Image_lib {
$txt_color = str_split(substr($this->wm_font_color, 1, 6), 2);
$txt_color = imagecolorclosest($src_img, hexdec($txt_color[0]), hexdec($txt_color[1]), hexdec($txt_color[2]));
$drp_color = str_split(substr($this->wm_shadow_color, 1, 6), 2);
- $drp_color = imagecolorclosest($src_img, hexdec($drp_color[0]), hexdec($drp_color[2]), hexdec($drp_color[3]));
+ $drp_color = imagecolorclosest($src_img, hexdec($drp_color[0]), hexdec($drp_color[1]), hexdec($drp_color[2]));
// Add the text to the source image
if ($this->wm_use_truetype)