blob: 4e621dce94ff6f9e81adfb33519f5d937630f462 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/php
<?php
require_once "phpfspot.class.php";
$fspot = new PHPFSPOT;
$fspot->fromcmd = true;
$all = $fspot->getPhotoSelection();
foreach($all as $photo) {
$fspot->gen_thumb($photo);
}
?>
|