Width of thumbnails |
1/28/2009 5:22:39 AM |
PHPRunner General questions | |
A
alfonso authorDevClub member
In phprunner I can define maximum width or height of thumnails but I want only use this value to change witdh. I see this change in CreateThumbnail function. How can I disable to use this parameter as maximun height? Something must change into: |
|
J
|
Jane 1/28/2009 |
Hi, if($sx>$size) { $nsy=(integer)($sy*$size/$sx); $nsx=$size; $thumb = imagecreatetruecolor($nsx,$nsy); ... |
A
|
alfonso authorDevClub member 2/4/2009 |
Hi, here is a sample:
|