Welcome Guest, Not a member yet? Register   Sign In
image resizing pblm
#1

[eluser]mahins area[/eluser]
hi i want to resize my omage into two diemsions.(100*100)(400*400)


for that i used

//======================================================================Create thumbnails====================================================//
$thumbname=$data['upload_data']['full_path'];
$config['image_library'] = 'gd2';
$config['source_image'] = $thumbname;
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 105;
$config['height'] =100;
$this->load->library('Image_lib', $config);

if ( ! $this->image_lib->resize())
{
echo $this->image_lib->display_errors();
}

unset($config);
$this->image_lib->clear();
//================================================End of Thumb Creation===================================================================//



//======================================================================Create thumbnails====================================================//
$thumbname=$data['upload_data']['full_path'];
$config['image_library'] = 'gd2';
$config['source_image'] = $thumbname;
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 400;
$config['height'] =400;
$this->load->library('Image_lib', $config);

if ( ! $this->image_lib->resize())
{
echo $this->image_lib->display_errors();
}

unset($config);
$this->image_lib->clear();
//================================================End of Thumb Creation===================================================================//


















Thins are ok with first thumbnail.that is i got a thumnail with 100*100

but i didint get a thumnail with 400*400.


Can we create many thumbnails of same image ?please reply!thanks in advace


Messages In This Thread
image resizing pblm - by El Forum - 02-10-2011, 01:33 AM



Theme © iAndrew 2016 - Forum software by © MyBB