#!/usr/bin/php
<?php

require_once "phpfspot.class.php";

$fspot = new PHPFSPOT;

$all = $fspot->getPhotoSelection();

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

?>