summaryrefslogtreecommitdiffstats
path: root/gen_thumbs.php
blob: d8e384a8de51f0125d88a324ecb5e2c0e131a985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/php
<?php

require_once "phpfspot.class.php";

$fspot = new PHPFSPOT;

$all = $fspot->getPhotoSelection();

foreach($all as $photo) {
   $fspot->gen_thumb($photo, 'fromcmd');
}

?>