-
-
Save 27Cobalter/50d50a6e5f88778b246379ec8b0b650c to your computer and use it in GitHub Desktop.
画像をPDF化するやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir -p /tmp/i2p | |
/bin/rm -rf /tmp/i2p/* | |
find . -type d | xargs -I{} mkdir -p /tmp/i2p/{} | |
find . -type f -name "*.png" | xargs -I{} convert {} -background white -alpha remove -alpha off /tmp/i2p/{} | |
find /tmp/i2p -type f | sed -e 's/.*/\"&\"/g' | sort | xargs img2pdf --output ./out.pdf --auto-orient | |
/bin/rm -rf /tmp/i2p/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment