Bosky, Dave wrote:
> Does anyone have a nice function that will resize an uploaded image to
> specific width/height dimensions?
Not a function, per se, but I use this script:
$height){
$scale = $target/$width;
}
else{
$scale = $target/$height;
}
if ($scale < 1){
$w = round($s
On Monday 28 February 2005 10:34 am, Bosky, Dave wrote:
> Does anyone have a nice function that will resize an uploaded image to
> specific width/height dimensions?
>
> I wanted to find something that would work for only GIF and JPG image
> types. I've converted my shopping cart
>
> application fro
On Mon, 2005-02-28 at 10:34 -0500, Bosky, Dave wrote:
>Does anyone have a nice function that will resize an uploaded image to
>specific width/height dimensions?
>
>I wanted to find something that would work for only GIF and JPG image types.
>I've converted my shopping cart
>
>application from Cold
Dave!
I would start by reading the PHP manual. Look for a function called
'imagecopyresized()'. This might help.
/frank
2005-02-28 kl. 16.34 skrev Bosky, Dave:
Does anyone have a nice function that will resize an uploaded image to
specific width/height dimensions?
I wanted to find something that
Does anyone have a nice function that will resize an uploaded image to
specific width/height dimensions?
I wanted to find something that would work for only GIF and JPG image types.
I've converted my shopping cart
application from Cold Fusion to PHP and need to create thumbnails and reduce
the si
5 matches
Mail list logo