我有一个脚本,可以从 svg 模板生成整个团队的名片。它会生成一个名片大小的 pdf,如下所示:
+-----------------+
| o o |
| \__/ |
| |
+-----------------+
现在,对于打印来说,我知道一张 A4 纸上可以打印 12 个这样的内容。如果这样安排的话:
+---+---+---+---+
| | | | |
|:) |:) |:) |:) |
| | | | |
+---+---+---+---+
| | | | |
|:) |:) |:) |:) |
| | | | |
+---+---+---+---+
| | | | |
|:) |:) |:) |:) |
| | | | |
+---+---+---+---+
所以,我需要一个脚本来在 pdf 级别上执行此操作。有什么线索可以解决这个问题吗?
答案1
鉴于建议安东,我采用了这个脚本。主要思想是首先将 pdf 导出回 plain-svg,合成 svg 并再次将其导出为 pdf。 A4 尺寸是硬编码的,但可以在脚本中更改。
#!/bin/bash
# If you modify/extend this script, it'd be cool if you post your improvements on
# https://unix.stackexchange.com/q/177263/9495
# This is A4 size
TARGET_WIDTH=744.09003
TARGET_HEIGHT=1052.3622
ext=".a4_4x3.pdf"
draw_border="1" # set to 0 to deactivate borders
TEMP_DIR="$(mktemp -d)"
pdftk A="$1" cat Aeast output "$TEMP_DIR/rot.pdf"
inkscape --export-plain-svg="$TEMP_DIR/rot.plain.svg" "$TEMP_DIR/rot.pdf"
psvg="$(cat "$TEMP_DIR/rot.plain.svg" | tr '\t' ' ' | tr -d '\n' | sed 's/</\n</g; s/>/>\n/g' | grep '.')"
W="$(echo "$psvg" | sed -n 's/^.*width="\([0-9.]\+\)".*$/\1/p' | head -n 1)"
H="$(echo "$psvg" | sed -n 's/^.*height="\([0-9.]\+\)".*$/\1/p' | head -n 1)"
orig_g="$(echo "$psvg" | sed -n '/^<g/,$p' | sed '$,$d')"
if [ "$draw_border" = "1" ]; then
main_g="$(echo '<rect style="stroke-width:1px; stroke:#000000; fill:#ffffff" width="'"$W"'" height="'"$H"'" />'; echo "$orig_g")"
else
main_g="$orig_g"
fi
husk_open="$(echo "$psvg" | sed '/^<g/,$d' \
| sed "s/width=\"$W\"/width=\"$TARGET_WIDTH\"/"\
| sed "s/height=\"$H\"/height=\"$TARGET_HEIGHT\"/")"
husk_close="</svg>"
move_right () {
echo "<g transform=\"translate($W,0)\">"
cat
echo "</g>"
}
move_down () {
echo "<g transform=\"translate(0,$H)\">"
cat
echo "</g>"
}
mk_row () {
echo "$1"
echo "$1" | move_right
echo "$1" | move_right | move_right
echo "$1" | move_right | move_right | move_right
}
mk_all () {
mk_row "$1"
mk_row "$1" | move_down
mk_row "$1" | move_down | move_down
}
margin_L="$(python -c "print ($TARGET_WIDTH - 4*$W)/2.")"
margin_H="$(python -c "print ($TARGET_HEIGHT - 3*$H)/2.")"
(
echo "$husk_open"
echo "<g transform=\"translate($margin_L,$margin_H)\">"
mk_all "$main_g"
echo "</g>"
echo "$husk_close"
) | tr -d '\n' > "$TEMP_DIR/out.svg"
inkscape --export-pdf="$1$ext" "$TEMP_DIR/out.svg"
rm -r "$TEMP_DIR"
答案2
我不知道有任何现成的 12-on-1 postscrript/pdf 应用程序,并且您无法通过结合更标准的 2-on-1 或 4-on-1 来获得此结果。
您可以做的是将 pdf 文件与其pdftk
选项合并在一页上background
。然而,它不允许您放置单独的卡。最简单的方法可能是生成 12 张 A4 大小的名片,每张名片的渲染位置正确(并旋转),具有透明背景,然后将它们组合起来。如果你不能做到这一点,你应该考虑使用来ghostscript
进行旋转和变换,并组合输出。
这假设您不从图像生成 PDF(这通常会降低质量,但可以更轻松地在图像级别组合各个文件)