gpt4 book ai didi

bash - 在另一个 .pdf 文件的每一页末尾添加一个 .pdf 文件(基本上是 .png)

转载 作者:行者123 更新时间:2023-11-29 09:19:22 27 4
gpt4 key购买 nike

我有一个转换为 code.pdf 的 code.ps 文件,我想将其添加到我的 test.pdf 中每一页的末尾,即缩小 test.pdf 的每一页并在其末尾添加一个图像.

我已经为它编写了以下 shell 脚本,但它在 test.pdf 的每一页之后附加了 code.pdf 作为新页面! ...请帮助。这是我的代码:-

#!/bin/sh
filename=test.pdf
pages="`pdftk $filename dump_data | grep NumberOfPages | cut -d : -f2`"
numpages=`for ((a=1; a <= $pages; a++)); do echo -n "A$a B1 "; done`
pdftk A=$filename B=code.pdf cat $numpages output $filename-alternated.pdf
exit 0

最佳答案

将图像 (image.[pdf,png] 标记到多页 pdf (text.pdf) 上的简单示例,允许使用 pdfjampdftk 手动调整缩放和偏移 可以是:

# scale and offset the text part
pdfjam --scale 0.8 --frame True --offset '0cm 2.5cm' text.pdf
# scale and offset the image
pdfjam --paper 'a4paper' --scale 0.3 --offset '7cm -12cm' image.pdf
# combine both
pdftk text-pdfjam.pdf stamp image-pdfjam.pdf output combined.pdf

这可能看起来像 enter image description here

如果您从图像文件(png、jpg)开始,您可以使用 imagemagick 将其转换为 pdf

convert image.png image.pdf

当然,比例因子和偏移量必须根据您的需要进行调整。我包含了 --frame 选项来突出显示 text.pdf 部分的缩放比例。 stamp 选项覆盖图像,而 background 选项将覆盖图像。

关于bash - 在另一个 .pdf 文件的每一页末尾添加一个 .pdf 文件(基本上是 .png),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20235541/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com