Skip to content

Instantly share code, notes, and snippets.

@27Cobalter
Last active May 11, 2021 04:45
Show Gist options
  • Save 27Cobalter/50d50a6e5f88778b246379ec8b0b650c to your computer and use it in GitHub Desktop.
Save 27Cobalter/50d50a6e5f88778b246379ec8b0b650c to your computer and use it in GitHub Desktop.
画像をPDF化するやつ
#!/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