Files
Scanning the repository...
Last update 5 years 1 month
by Charles Julian Knight
Files_oldpresentation | |
---|---|
.. | |
src | |
.editorconfig | |
.gitignore | |
.jshintrc | |
.travis.yml | |
Gruntfile.js | |
app.js | |
bower.json | |
couchapp.json | |
other.md | |
package.json | |
pdf.sh | |
rasterize.js |
pdf.sh#!/bin/bash mkdir pdf-out for i in {1..19}; do phantomjs rasterize.js http://localhost:5455/#${i} pdf-out/${i}.png "1600px*1200px" done convert pdf-out/{1..19}.png output.pdf rm -r pdf-out