summaryrefslogtreecommitdiff
path: root/gallery
blob: 2f89dfa259271806c6acd3d6b01af413dc26d7fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
gallery
make a nice little web gallery

Patrick Simianer <p@simianer.de>
2010-03-31
"""

import sys, os, glob, subprocess, shlex

def main():
    try:
        path = sys.argv[1]
    except IndexError:
        print 'Usage: gallery.py /path/to/images/'
        sys.exit(1)
    path += '/'
    files = glob.glob(path+'*.jpg')
    if not os.path.exists(path+'thumbs'):
        os.mkdir(path+'thumbs')
    files.sort()
    for f in files:
        cmd = 'convert "'+f+'" -resize 320x320 "'+path+'thumbs/'+f.split('/')[-1]+'"'
        a = shlex.split(cmd)
        subprocess.Popen(a)

    print '<html><head><title></title></head><body style="background:#000">'
    print '<div style="text-align:center"><p style="font-size:0.8em;color:#303030">Anklicken zum Vergr&ouml;&szlig;ern</p>'
    for f in files:
        print '<div style="padding:16px;">'
        print '<a href="'+f+'" target="_blank"><img style="border:2px solid #303030" src="thumbs/'+f+'" /></a>'
        print '</div>'
    print '</div></body></html>'

if __name__ == '__main__':
    main()