Skip to content

Instantly share code, notes, and snippets.

@takahashilabo
Created December 4, 2023 04:56
Show Gist options
  • Save takahashilabo/453e15339d7c851f03461f8d0c7cea88 to your computer and use it in GitHub Desktop.
Save takahashilabo/453e15339d7c851f03461f8d0c7cea88 to your computer and use it in GitHub Desktop.
#!/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