Webmaster Forum

Go Back   Webmaster Forum > Web Development > Coding Forum

Coding Forum Problems with your code? Discuss coding issues, including JavaScript, PHP & MySQL, HTML & CSS, Flash & ActionScript, and more.


 
 
LinkBack Thread Tools Display Modes
Prev Previous Post   Next Post Next
Old 05-20-2004, 12:02 PM   #1 (permalink)
Contributing Member
 
ATLien's Avatar
 
Join Date: 10-13-03
Location: Atlanta, GA
Posts: 1,135
iTrader: 0 / 0%
ATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really niceATLien is just really nice
Send a message via AIM to ATLien Send a message via Skype™ to ATLien
PHP Image Resize Issue

[code:1:c36122c4ac]function resize($fname, $output, $max_width, $max_height, $quality = 75) {

getimagesize($fname);
$width = $size[0];
$height = $size[1];
$x_ratio = $max_width / $width;
$y_ratio = $max_height / $height;
if ( ($width <= $max_width) && ($height <= $max_height) ) {
$tn_width = $width;
$tn_height = $height;
}
else if (($x_ratio * $height) < $max_height) {
$tn_height = ceil($x_ratio * $height);
$tn_width = $max_width;
}
else {
$tn_width = ceil($y_ratio * $width);
$tn_height = $max_height;
}

$im = imagecreatefromjpeg($fname);
$dst = imagecreatetruecolor($tn_width,$tn_height);
imagecopyresampled($dst, $im, 0, 0, 0, 0,$tn_width,$tn_height,$width,$height);
imagejpeg($dst, $output, $quality);
imagedestroy($im);
imagedestroy($dst);
}
[/code:1:c36122c4ac]

Ok, someone gave me the above code to create a thumb. I want to know what varible I would use to echo the path to the image created in the function. Can anyone help me?
ATLien is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Coding Forum

 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to resize images x360 Web Design Lobby 12 07-07-2007 01:53 PM
Hi, can someone resize this please? louise501 Graphic Design Forum 11 11-09-2006 06:47 PM
Resize Image Please Centertainment Graphic Design Forum 8 08-31-2006 09:17 AM
How to make BckGrn image resize to browser window? seonewbee Web Design Lobby 4 07-19-2005 11:47 AM
Help, How do you get an image to resize to your specific scr Rocknrob Web Design Lobby 20 12-17-2003 10:51 AM


Sponsor Links
Get exposure! Contextual Links V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 10:08 AM.
© Copyright 2008 V7 Inc
Powered by vBulletin
Copyright © 2000-2009 Jelsoft Enterprises Limited.


Search Engine Optimization by vBSEO 3.3.0 ©2009, Crawlability, Inc.