Welcome Guest, Not a member yet? Register   Sign In
Watermark and Thumbnail
#1

[eluser]dennismonsewicz[/eluser]
I am have a script that I need to create a thumbnail and a watermark (on the original image), but my script is only creating the thumbnail and skipping over the watermarking part... any ideas?

Code:
$image = $data['json']->{'file_name'};
            $ext = $data['json']->{'file_ext'};
            $data['account'] = $account;
            
            $this->_insertintodb($account, $image);
            
            //Settings to create thumbnail
            $config['source_image'] = $data['json']->{'file_path'};
            $config['create_thumb'] = TRUE;
            $config['maintain_ratio'] = TRUE;
            $config['width'] = 125;
            $config['height'] = 125;
            $this->image_lib->initialize($config);
            
            if($this->image_lib->resize()) {
                $prep_thumb = explode('.', $image);
                $thumb = $prep_thumb[0] . '_thumb.' . $prep_thumb[1];
                $this->_moveimage($thumb, $account, TRUE);
            }
            
            $this->image_lib->clear();
            
            //Settings to create watermark overlay
            $config = array();
            $config['source_image'] = $data['json']->{'file_path'};
            $config['wm_type'] = 'overlay';
            $config['wm_overlay_path'] = getcwd() . '/design/overlay_watermark_transparent.png';
            $config['wm_vrt_alignment'] = 'middle';
            $config['wm_hor_alignment'] = 'center';
            
            $this->image_lib->initialize($config);
            
            if(!$this->image_lib->watermark()){
                $this->image_lib->display_errors();
            }

Thanks in advance!


Messages In This Thread
Watermark and Thumbnail - by El Forum - 06-29-2010, 03:18 PM
Watermark and Thumbnail - by El Forum - 06-29-2010, 08:40 PM
Watermark and Thumbnail - by El Forum - 07-29-2010, 12:10 PM
Watermark and Thumbnail - by El Forum - 07-29-2010, 12:12 PM
Watermark and Thumbnail - by El Forum - 07-29-2010, 12:25 PM



Theme © iAndrew 2016 - Forum software by © MyBB