CodeIgniter Forums
Image lib - Problems watermarking orig and creating thumb copy - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Image lib - Problems watermarking orig and creating thumb copy (/showthread.php?tid=2382)



Image lib - Problems watermarking orig and creating thumb copy - El Forum - 08-02-2007

[eluser]the real rlee[/eluser]
Hi guys,

been working with the Image library, pretty good stuff but im so confused on how to watermark an image then create a thumb copy of this image. For some reason it never watermarks the source image and just resizes the source image to the thumbsize!

Here's what i have (simplified for the post):

Code:
// main (original)
$main_image['source_image'] = './uploads/myimage.jpg';
$main_image['image_library'] = 'GD2';
$main_image['wm_text'] = 'newsXpress';
$main_image['wm_type'] = 'text';
$main_image['wm_font_path'] = BASEPATH.'fonts/arial.ttf';
$main_image['wm_font_size'] = '9';
$main_image['wm_font_color'] = 'CC2228';
$main_image['wm_opacity'] = 100;
$main_image['wm_vrt_alignment'] = 'bottom';
$main_image['wm_hor_alignment'] = 'right';
$main_image['wm_vrt_offset'] = 2;
$main_image['wm_padding'] = '2';
$this->image_lib->initialize($main_image);
$this->image_lib->watermark();

// thumbnail
$thumb_image['source_image'] = './uploads/myimage.jpg';
$thumb_image['image_library'] = 'GD2';
$thumb_image['create_thumb'] = TRUE; // assume this will create a thumb copy of orig???
$thumb_image['width'] = 92;
$thumb_size['height'] = 124;
$this->image_lib->initialize($thumb_image);
$this->image_lib->resize();