Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 12 | Rev 17 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12 Rev 15
Line 17... Line 17...
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: eflore_photo.inc.php,v 1.4 2004-06-23 13:21:23 linda Exp $
22
// CVS : $Id: eflore_photo.inc.php,v 1.5 2004-07-01 14:22:41 linda Exp $
23
/**
23
/**
24
* Titre
24
* Titre
25
*
25
*
26
* Description
26
* Description
27
*
27
*
Line 30... Line 30...
30
//Auteur original :
30
//Auteur original :
31
*@author        linda ANGAMA<linda_angama@yahoo.fr>
31
*@author        linda ANGAMA<linda_angama@yahoo.fr>
32
//Autres auteurs :
32
//Autres auteurs :
33
*@author        Aucun
33
*@author        Aucun
34
*@copyright     Tela-Botanica 2000-2004
34
*@copyright     Tela-Botanica 2000-2004
35
*@version       $Revision: 1.4 $ $Date: 2004-06-23 13:21:23 $
35
*@version       $Revision: 1.5 $ $Date: 2004-07-01 14:22:41 $
36
*/
36
*/
Line 37... Line 37...
37
 
37
 
Line 132... Line 132...
132
            $url_img_mini .=$ligne[1];
132
            $url_img_mini .=$ligne[1];
133
            $url_img .=$ligne[1];
133
            $url_img .=$ligne[1];
134
            $res.="                ";
134
            $res.="                ";
135
            $res.="<li class=\"ligne\">\n";
135
            $res.="<li class=\"ligne\">\n";
136
            $res.="                  ";
136
            $res.="                  ";
-
 
137
            $res.="<p class=\"info\">";
137
            $res.="<a href=\"papyrus.php?site=3&menu=39&onglet=photo&agrandit=".$url_img."\">";
138
            $res.="<a href=\"papyrus.php?site=3&menu=39&onglet=photo&agrandit=".$url_img."\">";
138
            $res.="\n                    ";
139
            $res.="\n                    ";
139
            $res.="<img src=\"".$url_img_mini."\" border=0 />";
140
            $res.="<img src=\"".$url_img_mini."\" border=0 />";
140
            $res.="\n                  ";
141
            $res.="\n                  ";
141
            $res.="</a>";
142
            $res.="</a>";
142
            $res.="\n                  ";
143
            $res.="\n                  ";
143
            $res.="<p class=\"info\">";
144
            $res.="\n                  ";
-
 
145
            
144
            $res.="\n                    ";
146
            $res.="\n                    ";
145
            $res.="<span class=\"label\">";
147
            $res.="<p class=\"label\">";
146
            $res.="\n                      ";
148
            $res.="\n                      ";
147
            $res.="num_ligne : ".$num_ligne;
149
            $res.="taille réelle de l'image : ".intval(filesize($url_img)/1024)." ko";
148
            $res.="\n                    ";
150
            $res.="\n                    ";
-
 
151
            list($long,$larg,$type,$attr)=getimagesize($url_img);
149
            $res.="</span>";
152
            $res.="largeur : ".$larg." px<br>";
150
            $res.="\n                    ";
153
            $res.="\n                    ";
151
            $res.="<span class=\"label\">";
154
            $res.="longueur :".$long." px<br>";
152
            $res.="\n                      ";
155
            $res.="\n                      ";
153
            $res.="id: ".$ligne[0]."->".$ligne[1];
156
            $res.="auteur : ";
154
            $res.="\n                    ";
157
            $res.="\n                    ";
155
            $res.="</span>";
158
            $res.="</p>";
156
            $res.="\n                  ";
159
            $res.="\n                  ";
157
            $res.="</p>";
160
            $res.="</p>";
158
            $res.="\n                   ";
161
            $res.="\n                   ";
159
            $res.="</li>\n";
162
            $res.="</li>\n";
-
 
163
            $res.="<li class=\"ligne2\"><div class=\"separateur\">&nbsp;</div></li>\n";
160
            if ($num_ligne%$img_l==2)
164
            if ($num_ligne%$img_l==2)
161
            {
165
            {
162
                $res.="            </ul>  \n";
166
                $res.="            </ul>  \n";
-
 
167
                $res.="<li class=\"colonne\"><span class=\"spacer\"></span></li>";
163
            }
168
            }
Line 164... Line 169...
164
            
169
            
165
            
170