Jump to content

[SOLVED] getimagesize() question...


acctman

Recommended Posts

hi i'm trying to use getimagesize() with a php image retrieval link that I created but for obivious reason it does not work. As you can see from the error below the pvtexp.php is the php image processing file so its not able to get the image size since php file is serving the image. is there any way around this? I need the image size for resizing the image on the page.

 

error:

Warning: getimagesize(/files/pvtexp.php?mid=39&iid=56390&idat=2005/02&sec=3) [function.getimagesize]: failed to open stream: No such file or directory

 

code i'm trying to use...

$result = getimagesize($en['profile_image_loc']);
$en['imgpadding'] = "";
if($result) {
    if($result[0] >= $result[1]) {
        if(($result[1] * (220 / $result[0])) <= 144) {
          $en['imgsize'] = " width=220";
          $en['imgpadding'] = " style=\"padding-top: " . round((144 - ($result[1] * (220 / $result[0]))) / 2) . "px;\"";
        } else {
          $en['imgsize'] = " height=144";
        }

Link to comment
https://forums.phpfreaks.com/topic/154347-solved-getimagesize-question/
Share on other sites

Pass it the image?  There really is no other way.

so i'd put the getimagesize in the pvtexp.php and then how would I pull the value on the main.php page?

 

part of the pvtexp.php image display file.

...
if ($_GET['sec'] == 2) { $type = "imgExp"; } 
if ($_GET['sec'] == 3) { $type = "imgPub"; }			
  	$im = @imagecreatefromjpeg('http://server2.com/'.$date.'/'.$mid.'/'.$type.'/'.($_GET['tmb']==1 ? 'imgTmb/' : '').$mid.'-'.$iid.'.jpg');
  	if(!$im) {
  		exit();
  	}
header("Content-type: image/jpeg");	
imagejpeg($im);
imagedestroy($im);					
}
$buf = ob_get_contents();
ob_end_clean();
print $buf;
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.