![]() |
Image Manipulation - Resize and create thumbnail - 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 Manipulation - Resize and create thumbnail (/showthread.php?tid=6920) |
Image Manipulation - Resize and create thumbnail - El Forum - 03-17-2008 [eluser]jedre[/eluser] Hello! After when I upload image file i need resize it and create thumbnail, but I want have 2 files. For example: I upload image file (image.jpg) 2000x1500px so I resize it to 500x500 and I want create thumb (70x50) from the same file. So I want have 2 files image.jpg (500x500) and image_thumb.jpg (70x50). How Can I do it? I know how resize original file but I don't know how resize and create thumb. Image Manipulation - Resize and create thumbnail - El Forum - 03-17-2008 [eluser]Ebot Ndip-Agbor[/eluser] This is what I use in my controller to resize my pictures, hope it helps Code: //some code here Image Manipulation - Resize and create thumbnail - El Forum - 03-17-2008 [eluser]jedre[/eluser] Do you use a resize method from image_lib? Can you show me resizePicture method? What is wrong on my code? in my constructor: Code: $this->imgmanrules = array( code to resize image: Code: function _img() This code doesn't work how I write in first post :/ When image is smaller then 500x500px all is ok. But when file is larger then 500x500 I take only one file with original name but size is thumbnail. What is wrong?! Image Manipulation - Resize and create thumbnail - El Forum - 03-17-2008 [eluser]Ebot Ndip-Agbor[/eluser] Sorry I completely forgot to post the resize method. Here it is Code: //use this to resize a picture to given specification and name Image Manipulation - Resize and create thumbnail - El Forum - 03-17-2008 [eluser]jedre[/eluser] Thank YOU. I'll also use "new_image" property. Image Manipulation - Resize and create thumbnail - El Forum - 03-17-2008 [eluser]Ebot Ndip-Agbor[/eluser] Glad I could help ![]() |