Created
December 4, 2023 04:56
-
-
Save takahashilabo/453e15339d7c851f03461f8d0c7cea88 to your computer and use it in GitHub Desktop.
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 | |
#前提: cpdfをhttps://github.com/coherentgraphics/cpdf-binariesから取得してインストールしておく | |
if [ $# -ne 1 ];then | |
echo "Usage: $0 <pdf filename>"; | |
exit 1 | |
fi | |
w=$(cpdf -page-info $1 | grep MediaBox | awk -F' ' '{print $4}' | uniq) | |
h=$(cpdf -page-info $1 | grep MediaBox | awk -F' ' '{print $5}' | uniq) | |
w2=$(bc <<< "scale=4; $w/2") | |
cpdf -mediabox "0 0 $w2 $h" $1 -o left.pdf | |
cpdf -mediabox "$w2 0 $w2 $h" $1 -o right.pdf | |
cpdf -collate left.pdf right.pdf -o _$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment