/[cvs]/expose/index.php
ViewVC logotype

Diff of /expose/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by cam, Wed Nov 5 14:06:40 2003 UTC revision 1.7 by cam, Fri Nov 7 22:34:23 2003 UTC
# Line 21  Line 21 
21  | http://www.gnu.org/  | http://www.gnu.org/
22  +----------------------------------------------------------------------+  +----------------------------------------------------------------------+
23  $Id$  $Id$
24    
25    
26    
27    // CODE FOR EMBEDDING AVI/MPEG/MOV FILES IN HTML
28    
29    <embed src="filename" autostart="false" width="320" height="240" align="left" oncursor="play" hspace="20">
30    <noembed>
31            <a href="filename">click to view</a>
32                    <img dynsrc="filename" start="mouseover" align="left" controls width="320" height="240" hspace="25">
33            </a>
34    </noembed>
35  */  */
36    
37  $global_var['metadata']['author'] = "Carl Johan Schedvin <cjsc02@student.bth.se>";  $global_var['metadata']['author'] = "Carl Johan Schedvin <cjsc02@student.bth.se>";
# Line 41  $global_var['image_sz']['thumb'] = array Line 52  $global_var['image_sz']['thumb'] = array
52                                                                                  'ql'    =>      70,                                                                                  'ql'    =>      70,
53                                                                                  'wm'    =>      ''                                                                                  'wm'    =>      ''
54                                                                                          );                                                                                          );
   
55  $global_var['image_sz']['640'] = array  (  $global_var['image_sz']['640'] = array  (
56                                                                          'x'             =>      640,                                                                          'x'             =>      640,
57                                                                          'y'             =>      480,                                                                          'y'             =>      480,
# Line 61  $global_var['image_sz']['1024'] = array Line 71  $global_var['image_sz']['1024'] = array
71                                                                          'wm'    =>      ''                                                                          'wm'    =>      ''
72                                                                                  );                                                                                  );
73    
74    $global_var['image_sz']['valid_sizes'] = array  (
75                                                                                                            '640x480',
76                                                                                                            '800x600',
77                                                                                                            '1024x768'                                                                                                      
78                                                                                                    );
79    
80    $global_var['image_sz']['default']      =& $global_var['image_sz']['640'];
81    
82    $exif_headers = array ();
83    
84                                                            
85  if(isset($_SERVER['PHP_SELF'])) {  if(isset($_SERVER['PHP_SELF'])) {
86          $php_self = $_SERVER['PHP_SELF'];          $php_self = $_SERVER['PHP_SELF'];
87  } else {  } else {
# Line 78  if (isset($_GET)) { Line 97  if (isset($_GET)) {
97    
98    
99  /**  /**
  * ! NOT IMPLEMENTED !  
  *  
100   * Extracts the EXIF header of a JPG if available using   * Extracts the EXIF header of a JPG if available using
101   * built-in php function exif_read_data, this information   * built-in php function exif_read_data, this information
102   * is extracted upon request and not written to disk.   * is extracted upon request and not written to disk.
103   */   */
104  function extract_exif_data()  function extract_exif_data()
105  {  {
106            global $global_var, $pwd, $get_vars, $exif_headers;
107    
108            $src_image = $get_vars['img'];
109            $exif_data = @exif_read_data($pwd.'/'.$src_image,0,true);
110    
111            if($exif_data) {
112                    
113                    foreach($exif_data as $exif_section_key => $exif_section) {
114                            foreach($exif_section as $exif_key => $exif_value) {
115                                            
116                                            switch($exif_key) {
117                                                    case 'Model':
118                                                            array_push($exif_headers, 'Model: '.$exif_value);
119                                                            break;
120    
121                                                    case 'ApertureFNumber':
122                                                            array_push($exif_headers, 'Aperture: '. $exif_value);
123                                                            break;
124    
125                                                    case 'FocalLength':
126                                                            $factor = 6.49122807;
127                                                            $vars = split("/",$exif_value);
128                                                            $focal_length = round(($vars[0]/$vars[1])*$factor);
129                                                            array_push($exif_headers, 'Focal Length: '. $focal_length .'mm');
130                                                            break;
131    
132                                                    case 'DateTime':
133                                                            array_push($exif_headers, 'Date: '.$exif_value);
134                                                            break;
135    
136                                                    case 'FlashMode':
137                                                            switch($exif_value) {
138                                                                    case '0':
139                                                                            array_push($exif_headers, 'Flash: Off');
140                                                                            break;
141                                                                    case '1':
142                                                                            array_push($exif_headers, 'Flash: On');
143                                                                            break;
144                                                            }
145                                                            break;
146                                                    case 'ISOSpeedRatings';
147                                                            array_push($exif_headers, 'ISO: '.$exif_value);
148                                                            break;
149                                                    default:
150                                                            break;
151                                            }
152                            }
153                    }
154                    if(sizeof($exif_headers)>0)     {
155                            ksort($exif_headers);
156                            reset($exif_headers);
157                    }
158            }
159  }  }
160    
161    
# Line 117  function print_thumbnails() Line 187  function print_thumbnails()
187          if(!file_exists($pwd.'/'.$global_var['path']['thumb_dir']))          if(!file_exists($pwd.'/'.$global_var['path']['thumb_dir']))
188                  mkdir($pwd.'/'.$global_var['path']['thumb_dir'],0777);                  mkdir($pwd.'/'.$global_var['path']['thumb_dir'],0777);
189    
190            echo <<<EOT
191                    <div id="thumbnails_container">\n
192                    
193    EOT;
194    
195          foreach($image_files as $image) {          foreach($image_files as $image) {
196    
197                    $thumb_image = $pwd.'/'.$global_var['path']['thumb_dir'].'/'.$image;
198    
199                  // check if a thumbnail for current image exists, if not create one.                                                      // check if a thumbnail for current image exists, if not create one.                                    
200                  if(!file_exists($pwd.'/'.$global_var['path']['thumb_dir'].'/'.$image))                  if(!file_exists($thumb_image))
201                          create_thumbnail($image);                          create_thumbnail($image);
202    
203                    $thumb_sz = GetImageSize($thumb_image);
204            
205                  echo <<<EOT                  echo <<<EOT
206                  <div class="thumbnail">\n                          <div class="thumbnail" style="width: {$thumb_sz[0]}px; height: {$thumb_sz[1]}px;">\n
207                          <a href="$php_self?dir=$pwd&img=$image">                                  <a href="$php_self?dir=$pwd&img=$image">
208                                  <img src="$pwd/{$global_var[path][thumb_dir]}/$image" alt=""/>                                          <img src="$thumb_image" alt=""/>
209                          </a>                                  </a>
210                  </div>\n                          </div>\n
211  EOT;  EOT;
212          }          }
213    
214            echo <<<EOT
215                    </div>\n                
216                    <div style="clear: both;"><br/></div>\n
217    EOT;
218  }  }
219    
220    
# Line 138  EOT; Line 222  EOT;
222    
223  function show_image()  function show_image()
224  {  {
225          global $global_var, $get_vars, $pwd;          global $global_var, $get_vars, $pwd, $exif_headers;
226    
227            $image = $pwd.'/'.$get_vars['img'];
228    
229            $cached_image = $pwd.'/'.$global_var['path']['cache_dir'];
230    
231            if(file_exists($image)) {
232    
233                    $image_size = GetImageSize($image);
234                    $src_image_size = $image_size;
235    
236                    if(isset($get_vars['width'])) {
237                            
238                            $cache_size = split("x",$get_vars['width']);
239                            
240                            if($cache_size[0] >= $src_image_size[0]) {
241                                    $cache_image = $image;
242                            } else {
243                                    if(array_search($get_vars['width'], $global_var['image_sz']['valid_sizes'])) {
244                                            if(!file_exists($pwd.'/.cache/'.$get_vars['width'].'_'.$get_vars['img'])) {
245                                                    resize_image($get_vars['width'].'_');
246                                            }
247                                            $cached_image = $pwd.'/.cache/'.$get_vars['width'].'_'.$get_vars['img'];
248                                    }
249                                    if($cache_size[0] == $global_var['image_sz']['default']['x'])  
250                                            $cached_image = $cached_image.'/default_'.$get_vars['img'];
251                            }
252                                    
253                    } else {
254                            if(!file_exists($cached_image.'/default_'.$get_vars['img'])) {
255                                    resize_image('default_');
256    
257                            }
258                            $cached_image = $cached_image.'/default_'.$get_vars['img'];
259                            
260                    }
261    
262                    $image_size = GetImageSize($cached_image);
263                    
264                    extract_exif_data();
265            
266                    if(sizeof($exif_headers) > 0) {
267    
268                            $exif_str .= sprintf("<span style=\"font-weight: bold; color:#333;\">EXIF</span> ");
269    
270                            foreach($exif_headers as $exif_tag) {
271                                    $exif_str .= sprintf("| %s ", $exif_tag);
272                            }
273    
274                            echo <<<EOT
275                                    <div id="exif_headers">\n
276                                            <span>$exif_str</span>\n
277                                    </div>\n
278    EOT;
279    
280                    }
281                    
282            
283                    echo <<<EOT
284                            <div id="image" style="width: {$image_size[0]}px; height: {$image_size[1]}px;">\n
285                                    <a href="$image" target="_blank"><img src="$cached_image" alt=""></a>
286                            </div>\n
287    EOT;
288    
289                    $image_index = get_image_index();
290                    $next = get_next_image($image_index);
291                    $prev = get_prev_image($image_index);
292    
         if(file_exists($pwd.'/'.$get_vars['img'])) {  
293                  echo <<<EOT                  echo <<<EOT
294                          <div id="image">\n                          <span style="font-weight: bold;">Size:</span>&nbsp;
295                                  <img src="$pwd/{$get_vars[img]}" alt="">  EOT;
296            
297                    foreach($global_var['image_sz']['valid_sizes'] as $new_size) {
298    
299                            if($get_vars['width'] == $new_size) {
300                                    echo $new_size;
301                            } elseif($cache_size[0] >= $src_image_size[0]) {
302                            } else {
303    
304                                    echo <<<EOT
305                                            <a href="$php_self?dir=$pwd&img={$get_vars[img]}&width=$new_size">$new_size</a>&nbsp;
306    EOT;
307                            }
308    
309                    }
310                    
311                    echo <<<EOT
312                            <a href="$pwd/{$get_vars[img]}" target="_blank">{$src_image_size[0]}x{$src_image_size[1]}</a>
313    EOT;
314    
315                    echo <<<EOT
316                            <div>\n
317                                    <a href="$php_self?dir=$pwd&img=$prev">prev</a>
318                                    <a href="$php_self?dir=$pwd&img=$next">next</a>\n
319                          </div>\n                          </div>\n
320  EOT;  EOT;
321                    
322          }          }
323  }  }
324    
325    
326    
327    
328  function resize_image()  function resize_image($prefix)
329  {  {
330            global $global_var, $get_vars, $pwd;
331            $src_image = $get_vars['img'];
332            $cache_dir = $pwd.'/'.$global_var['path']['cache_dir'];
333    
334            if(isset($global_var['external']['magick'])) {
335                    if(file_exists($pwd.'/'.$src_image)) {
336    
337                            $src_image_sz = GetImageSize($pwd.'/'.$src_image);
338                            $resize_aspect = round(($global_var['image_sz']['default']['y'] / $src_image_sz[1])*100, 2);
339                            $resize_quality = $global_var['image_sz']['default']['ql'];
340    
341                            if(isset($get_vars['width'])) {
342                                    $new_width = split("x", $get_vars['width']);
343                                    $resize_aspect = round(($new_width[1] / $src_image_sz[1])*100, 2);
344                            }
345    
346                            print "Quality: ".$global_var['image_sz']['default']['ql'] ." Resize Aspect: ". $resize_aspect ."%";
347                            if(!file_exists($cache_dir))
348                                    mkdir($cache_dir,0777);
349    
350                            $debug = array();
351    
352                            exec($global_var['external']['magick']
353                                    .' -geometry '.$resize_aspect.'%'
354                                    .' -quality '.$resize_quality
355                                    .' '.$pwd.'/'.$src_image
356                                    .' '.$pwd.'/'.$global_var['path']['cache_dir'].'/'.$prefix.$src_image, $debug, $ret_val
357                                    );
358    
359                            print_r($debug);
360                    }      
361            }      
362  }  }
363    
364    
365    
366    
367    function get_image_index()
368    {
369            global $get_vars, $image_files;
370    
371            return array_search($get_vars['img'], $image_files);
372    }
373    
374    function get_next_image($pos)
375    {
376            global $get_vars, $image_files;
377    
378            $next = $pos + 1;
379            
380            if($next >= sizeof($image_files))
381                    $next = 0;
382    
383            return $image_files[$next];
384    }
385    
386    function get_prev_image($pos)
387    {
388            global $get_vars, $image_files;
389    
390            $prev = $pos - 1;
391            
392            if($prev < 0)
393                    $prev = sizeof($image_files) - 1;
394    
395            return $image_files[$prev];
396    }
397    
398    
399    function get_split_path()
400    {
401            global $pwd;
402    
403            $split_path = split('/', $pwd);
404    
405            return $split_path;
406    }
407  /**  /**
408   * Retirieves all filenames that are images exclude all   * Retirieves all filenames that are images exclude all
409   * other files. It's not recursive so it only examins the   * other files. It's not recursive so it only examins the
# Line 174  function &get_image_filenames($path) Line 421  function &get_image_filenames($path)
421                  $pwd_dd = opendir($path);                  $pwd_dd = opendir($path);
422                  while(($file = readdir($pwd_dd)) !== false) {                                    while(($file = readdir($pwd_dd)) !== false) {                  
423                          if(is_file($path."/".$file)                          if(is_file($path."/".$file)
424                                  && !eregi("^\.|^.*.php|^.*.css|^.*~",$file))                                  && !eregi("^\.|^.*.php|^.*.css|^.*~|^.txt",$file))
425                                          array_push($images, $file);                                          array_push($images, $file);
426                  }                  }
427          }          }
# Line 183  function &get_image_filenames($path) Line 430  function &get_image_filenames($path)
430    
431    
432    
433    
434  /**  /**
435   * Retrieves all directory names present in $path. Using   * Retrieves all directory names present in $path. Using
436   * eregi we exclude names we don't want in the list.   * eregi we exclude names we don't want in the list.
# Line 206  function &get_directory_names($path) Line 454  function &get_directory_names($path)
454    
455    
456    
457    
458    
459    
460    function create_directory_browser()
461    {
462            global $pwd, $dir_files;
463    
464            if(sizeof($dir_files)>0) {
465                    
466                    foreach($dir_files as $dir)  {
467    
468                            $dir_image = 'open.png';
469            
470                            if(file_exists($pwd.'/'.$dir.'/.htaccess'))
471                                    $dir_image = 'protected.png';
472    
473                            echo <<<EOT
474                                    <div style="text-align: center;">\n
475                                            <a href="$php_self?dir=$pwd/$dir">\n
476                                                    <img src="../images/$dir_image" alt=""/><br/>$dir\n
477                                            </a>\n
478                                    </div>\n
479    EOT;
480                    }      
481            }
482    }
483    
484    
485    
486    
487    
488    
489  if (isset($get_vars['dir']) && is_dir(rawurldecode($get_vars['dir'])))  if (isset($get_vars['dir']) && is_dir(rawurldecode($get_vars['dir'])))
490  {  {
491          $pwd = rawurldecode($get_vars['dir']);          $pwd = rawurldecode($get_vars['dir']);
# Line 220  $dir_files =& get_directory_names($pwd); Line 500  $dir_files =& get_directory_names($pwd);
500  // print the html header before continuing processing.  // print the html header before continuing processing.
501  html_template_header();  html_template_header();
502    
503    //if($global_var['navigation_bar'])
504            html_template_navbar();
505    
506  if(sizeof($image_files) <= 0) {  if(sizeof($image_files) <= 0) {
507          if(sizeof($dir_files) > 0) {          if(sizeof($dir_files) > 0) {
508                    create_directory_browser();
509          } else {          } else {
510          }          }
511  } else {  } else {
# Line 235  if(sizeof($image_files) <= 0) { Line 518  if(sizeof($image_files) <= 0) {
518          }          }
519  }  }
520    
521    
522    
523    
524  // print the html footer to make it nice and tidy.  // print the html footer to make it nice and tidy.
525  html_template_footer();  html_template_footer();
526    
# Line 268  echo <<<EOF Line 554  echo <<<EOF
554          <meta name="description" content="{$global_var[metadata][description]}" />          <meta name="description" content="{$global_var[metadata][description]}" />
555          <meta name="robots" content="all" />          <meta name="robots" content="all" />
556                    
557          <title></title>          <title>expose: </title>
558                    
559          <style type="text/css">          <style type="text/css">
560                  @import "/~ikea/style.css";                  @import "./style.css";
561          </style>          </style>
562                    
563          <link rel="Shortcut Icon" type="image/x-icon" href="/img/favicon.ico" />                  <link rel="Shortcut Icon" type="image/x-icon" href="/img/favicon.ico" />        
# Line 279  echo <<<EOF Line 565  echo <<<EOF
565  </head>  </head>
566    
567  <body>  <body>
568    <div id="header">\n
569            <h1>expose:</h1>
570            <span style="font-style: italic;"></span>
571    </div>\n
572  <div id="container">\n  <div id="container">\n
573  EOF;  EOF;
574  }  }
# Line 287  EOF; Line 576  EOF;
576    
577    
578    
579    
580    
581    
582  /**  /**
583   * Prints the html footer, this contains only closing   * Prints the html footer, this contains only closing
584   * tags for the html document and the copyright notice.   * tags for the html document and the copyright notice.
# Line 296  function html_template_footer() Line 588  function html_template_footer()
588          global $global_var;          global $global_var;
589  echo <<<EOF  echo <<<EOF
590          <div id="copyright">\n          <div id="copyright">\n
591                  {$global_var[str_msg][copyright]}                  {$global_var[str_msg][copyright]}<br />\n
592          </div>                  <a href="">expose</a>\n <span style="font-style: italic;">\$Revision$</span>\n
593  </div>          </div>\n\n
594  </body>  </div>\n
595  </html>  </body>\n
596    </html>\n
597  EOF;  EOF;
598  }  }
599    
600    
601    
602    
603    
604    
605    function html_template_navbar()
606    {
607            global $get_vars;
608            $split_path = get_split_path();
609    
610            if(sizeof($split_path) > 0) {
611    
612                    foreach($split_path as $dir) {
613                            if($dir!='') {
614                                    $path .= $dir.'/';
615                                    echo <<<EOT
616                                            <a style="text-decoration: none;" href="$php_self?dir=$path">
617    EOT;
618                                    if($dir == '.')
619                                            $dir = 'expose';
620    
621                                    echo <<<EOT
622                                            $dir</a> &gt;&nbsp;\n
623    EOT;
624                            }
625                    }
626                    if(isset($get_vars['img'])) {
627                            echo <<<EOT
628                                    {$get_vars[img]}
629    EOT;
630                    }
631            }
632    }
633    
634  ?>  ?>

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.7

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26