issue14, thumbs are now stored outside F-Spot's directory structure
[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 ?>