projects
/
phpfspot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
issue6, first implementation of paged photo index view
[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
?>