查看文件: index_street_reimage.php
大小: 1.48 KB
类型: application/octet-stream
<style> .img_item{ //width:20%; //height:20%; margin-right:0; margin-left:0; } .img_container{ padding: 0; margin: 0; overflow: scroll; white-space:nowrap; } .img_container img{ padding: 0; height: 10%; //width: auto%; //display: block; margin: 0 auto; } </style> <?php $street_id='830';// 忠孝東路5段 2- 1000 $order=0; // 圖編號排列 -1 = 1000 ~ 1 1= 忠孝東路5段 1 ~ 1000 $dir = '/www2/skybni/street_image/'; $sdir = '/www2/skybni/street_simage/'; $files1=array(); $files2=array(); if($order==1){ $files1 = scandir($dir); } else { $files1 = scandir($dir, SCANDIR_SORT_DESCENDING); } $newid=0; for($i=0;$i<count($files1);$i++){ // if(substr($files1[$i],0,strlen($street_id)-1)==$street_id){ $str1=substr($files1[$i],0,strlen($street_id)) ; // echo $files1[$i].'('.$str1.')'.(strlen($street_id)-1).'<br>'; if($str1==$street_id){ $files2[$newid]=$files1[$i]; $newid++; } } ?> <div class="img_container"> <? for($i=0;$i<count($files2);$i++){ $targetFile=$dir.$files2[$i]; $small_image=$sdir.'s'.$files2[$i]; $h="800";//自行設定的縮圖寬度 $size=GetImageSize($targetFile); // 取得圖檔的資訊 //$h=intval( $size[1]*$w/$size[0]); $w=intval( $h/$size[1]*$size[0]); $size2=$w."x".$h; $exec_str="/usr/local/bin/convert -geometry ".$size2." ".$targetFile." ".$small_image; exec($exec_str); ?> <? } ?> </div>
保存
取消
返回文件列表