diff options
author | San Jacobs | 2020-03-01 22:00:01 +0100 |
---|---|---|
committer | San Jacobs | 2020-03-01 22:00:01 +0100 |
commit | c57ef58bbf225ee884e2d63e26b4fcabae0571b5 (patch) | |
tree | b055a853bc4819ec27c9701f6c2ee04a0f90493e | |
parent | 3dcb9039869082c8cec406e199d721a0aea694d3 (diff) | |
download | filmstripper-c57ef58bbf225ee884e2d63e26b4fcabae0571b5.tar.gz filmstripper-c57ef58bbf225ee884e2d63e26b4fcabae0571b5.tar.bz2 filmstripper-c57ef58bbf225ee884e2d63e26b4fcabae0571b5.zip |
Added prints during processing
-rw-r--r-- | filmstripper.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/filmstripper.py b/filmstripper.py index 1b2d2c8..3609295 100644 --- a/filmstripper.py +++ b/filmstripper.py @@ -145,6 +145,8 @@ for eachFile in fileList: extendedStrip = filmstrip.crop(box=(0, 0, filmstrip.width+widthAdd, filmstrip.height+heightAdd)) extendedStrip.paste(eachImage, (extendedStrip.width-width, extendedStrip.height-height)) filmstrip = extendedStrip + print(eachFile+" added to filmstrip.") - +print("Exporting filmstrip to "+outputFile) filmstrip.save(outputFile) +print("Filmstrip exported.") |