Thread: Cropping In PHP
View Single Post
Old 11-20-2009, 03:16 PM   #13 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

Change
php Code:
function createThumb(){
        $thumbSize = 250; // will create a 250 x 250 thumb
        $this->thumb = imagecreatetruecolor($thumbSize, $thumbSize);
        imagecopyresampled($this->thumb, $this->myImage, 0, 0,$this->x, $this->y, $thumbSize, $thumbSize, $this->cropWidth, $this->cropHeight);
        }

to

php Code:
function createThumb(){
        $thumbSize1 = 400;
                $thumbSize2 = 200;
        $this->thumb = imagecreatetruecolor($thumbSize1, $thumbSize2);
        imagecopyresampled($this->thumb, $this->myImage, 0, 0,$this->x, $this->y, $thumbSize1, $thumbSize2, $this->cropWidth, $this->cropHeight);
        }
__________________
Tanax is offline  
Reply With Quote