i have solved it myself, see the code below.
PHP Code:
function fetch_attachment_info($userid, $attachid, $thumb)
{
$image = fetch_attachment_path($userid, $attachid,$thumb,'');
list($width, $height, $type, $attr) = getimagesize($image);
if ($width<$height ){$scaleh=true;} else { $scaleh=false;}
$attachinfo = array($width,$height,$scaleh);
return $attachinfo ;
}
?>