Scripte php image ...==>merci !

Fermé
thibothib Messages postés 60 Date d'inscription mardi 4 septembre 2007 Statut Membre Dernière intervention 28 février 2011 - 21 févr. 2008 à 09:55
 coelho - 26 févr. 2008 à 11:38
Bonjour,
voila le scripte

<?php
$image = "photos/Fon_ecran/4.gif" ; // un formulair pour choisir l"image

?>





     <?php
     // Nom de l'image.
     $source="$image";
    
     // Taille à ne pas dépasser, ici 200 pixels.
     $taillemax=500;
    
     // On récupère les dimension initiales de l'image.
    $img = getimagesize($source);
    $x=$img[0];
     $y=$img[1];
    
     // Le script.
     if ($x > $y)
     {
     $y=$y*(($taillemax)/$x);
     $x=$taillemax;
    }
     if ($y > $x)
     {
     $x=$x*(($taillemax)/$y);
     $y=$taillemax;
     }
     if ($y == $x)
     {
    $x=$taillemax;
     $y=$taillemax;
    }
    
     // On peut afficher l'image.
     echo "<img src=\"$source\" width=\"$x\" height=\"$y\" />";
     ?>


<?php $image1 = "<img src=\"$source\" width=\"$x\" height=\"$y\" />"  ; ?>



<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <TITLE>demo</TITLE>
</HEAD>
<body bgcolor="#000000" text="#000000" link="#000080" vlink="#800080" alink="#ff0000" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">

<P><APPLET CODE="DuriusWaterPic.class" WIDTH='<?php echo $x ?>' HEIGHT='<?php echo $y ?>'
ALIGN=bottom archive="DuriusWaterPic.jar">
<PARAM NAME="cabbase" VALUE="DuriusWaterPic.cab">




<PARAM NAME="image" VALUE="<?php echo $image1 ?>"> <!-- marche pas !!!-->
<!--
Mon problème est la je c pas comment faire pour que l'image soit afficher !!

-->




<!--la seule ligne &#65533; configurer est celle-ci, mettez le nom de votre image
n'oubliez pas non plus que la taille de l'applet doit &#65533;tre celle de l'image-->
<PARAM NAME="dotsize" VALUE="7">
<PARAM NAME="dim" VALUE="5">
<PARAM NAME="noise" VALUE="0">
<PARAM NAME="mouse" VALUE="1">
<PARAM NAME="delay" VALUE="100">
<PARAM NAME="target" VALUE="_blank">
<PARAM NAME="orientation" VALUE="v">
<PARAM NAME="bg" VALUE="233423">
<PARAM NAME="url" VALUE="http://top-perigord.com ">
<!--ici le nom du lien ouvert lorsque l'on clique sur l'applet-->
<PARAM NAME="reg" VALUE="43752326">
</APPLET><a href="../../free-java-scripts.html">.</a>
</BODY>
</HTML>





j'asseye de maitre un effet a une image redimantioner
A voir également:

3 réponses

thibothib Messages postés 60 Date d'inscription mardi 4 septembre 2007 Statut Membre Dernière intervention 28 février 2011 7
21 févr. 2008 à 10:59
up ?
0
thibothib Messages postés 60 Date d'inscription mardi 4 septembre 2007 Statut Membre Dernière intervention 28 février 2011 7
21 févr. 2008 à 12:14
up??? ;)
0
APPLET CODE="DuriusWaterPic.class" WIDTH='<?php echo $x; ?>' HEIGHT='<?php echo $y; ?>'
ALIGN=bottom archive="DuriusWaterPic.jar">
<PARAM NAME="cabbase" VALUE="DuriusWaterPic.cab">




<PARAM NAME="image" VALUE="<?php echo $image1; ?>"> <!-- marche pas !!!-->
<!--
Mon problème est la je c pas comment faire pour que l'image soit afficher !!

-->

faut fermer les echos avec ;
0