()
| 343 | from PIL import Image |
| 344 | |
| 345 | def getDir(): |
| 346 | global dirName |
| 347 | dirName = raw_input("Enter the directory to read images from (absolute path): ") |
| 348 | if(not(os.path.isdir(dirName))): |
| 349 | print "Directory does not exist!" |
| 350 | getDir() |
| 351 | getDir() |
| 352 | |
| 353 | title = raw_input("Enter a title for the album: ") |