d8e384a8de51f0125d88a324ecb5e2c0e131a985
[phpfspot.git] / gen_thumbs.php
1 #!/usr/bin/php
2 <?php
3
4 require_once "phpfspot.class.php";
5
6 $fspot = new PHPFSPOT;
7
8 $all = $fspot->getPhotoSelection();
9
10 foreach($all as $photo) {
11    $fspot->gen_thumb($photo, 'fromcmd');
12 }
13
14 ?>