> My question: Does anybody know an open source or freeware media (picture)
> viewer (slightly Off topic) or can I manipulate Plucker to act as an image
> viewer?
I came up with something back in April of 2001 that takes a
directory of images and creates an "album" for Plucker, with one image per
page, with links to go back and forward between the images. Try this:
'max=29' in this example is the number of images left in the
directory, each numbered 1-29. This worked out for me for a project I was
working on at the time.
max=29; for i in `seq 1 $max`; do j=$(printf "%02i.jpg" $i); let k=$i-1;
echo "<center><img src=\"0$j\" border=\"0\"><br /><a
href=\"1.html\">[1]</a> <a href=\"$[k % $max].html\">prev
slide</a> | <a href=\"$[i % $max + 1].html\">next
slide</a> <a href=\"$max.html\">[$max]</a></center>"> $i.html;
done;
Then just pluck 1.html as your starting page, up to $max. Done!
d.
_______________________________________________
plucker-list mailing list
[EMAIL PROTECTED]
http://lists.rubberchicken.org/mailman/listinfo/plucker-list