TailleFichierTemporaire( ) ));
*/
//header('Location: http://extranet"'.$NomFichier.'"');
}
function getLogo($siteWeb, $siren) {
require_once 'common/curl.php';
if (substr($siteWeb,-1)<>'/')
$siteWeb.='/';
$arrUrl=parse_url($siteWeb);
$page=getUrl($siteWeb, '', '', '', false, $arrUrl['host'], '', 3);
$body=$page['body'];
if (preg_match('//Ui', $body, $matches)) {
foreach ($matches[1] as $url) {
if (substr($url,0,1)=='/' || substr($url,0,1)=='./' || substr($url,0,7)<>'http://')
$url=$siteWeb.$url;
//echo "Chercher dans : $url.
";
$logo2=getLogo($url, $siren);
if ($logo2<>'') return $logo2;
}
}*/
return '';
}
function redimage($img_src,$dst_w,$dst_h) {
// Lit les dimensions de l'image
$size = GetImageSize($img_src);
$src_w = $size[0]; $src_h = $size[1];
// Teste les dimensions tenant dans la zone
$test_h = round(($dst_w / $src_w) * $src_h);
$test_w = round(($dst_h / $src_h) * $src_w);
// Si Height final non précisé (0)
if(!$dst_h) $dst_h = $test_h;
// Sinon si Width final non précisé (0)
elseif(!$dst_w) $dst_w = $test_w;
// Sinon teste quel redimensionnement tient dans la zone
elseif($test_h>$dst_h) $dst_w = $test_w;
else $dst_h = $test_h;
// Affiche les dimensions optimales
return "width=".$dst_w." height=".$dst_h;
}
?>