wenjingang 发表于 2024-6-3 16:09:16

先把文件分好类直接 合并不就行了?

lzspain 发表于 2024-6-3 18:23:42

wenjingang 发表于 2024-6-3 16:09
先把文件分好类直接 合并不就行了?

要是有能自动按名称合并的工具,我为何要把时间浪费在分类上?还是看清楚我的需求嘛,麻烦的方法我晓得

wwlyr 发表于 2024-6-4 18:55:27

这个我来回答你你装Acrobat专业破解版不是个人版装完鼠标左键把这几个文件选上 右键在Acrobat 合并 就能看到合并的文件 可以选顺序 完了点下面合并就好了

lzspain 发表于 2024-6-5 10:53:55

wwlyr 发表于 2024-6-4 18:55
这个我来回答你你装Acrobat专业破解版不是个人版装完鼠标左键把这几个文件选上 右键在Acrobat 合并 ...

又是一个没看清帖子内容的,以后这种我就不回复了

小C 发表于 2024-6-5 12:54:46

lzspain 发表于 2024-5-29 19:41
它没有我想要的功能,谢谢你

这个已经能实现你的功能了   思路很重要   第一步 设备重复字符第二步 按重复字符选择合并第三步 创建重复字符为名称的文件夹 第四步 存储合并的文件夹 并命名为重复字符

lzspain 发表于 2024-6-5 14:34:14

小C 发表于 2024-6-5 12:54
这个已经能实现你的功能了   思路很重要   第一步 设备重复字符第二步 按重复字符选择合并第三步 创 ...

我要的是一步,或者尽可能少的步数就达到目的,本身软件导出的PDF就是按名称和序号排好序的,只是要将同名不同序号的进行合并,点击右键用acrobat合并就可以,但是文件多,太繁琐了,懂吗?

emuemu 发表于 2024-6-5 16:43:26




PDF batch merging using ghostscript with wildcards



To merge multiple PDF files using Ghostscript with wildcards, you can follow these steps:
[*]Open the command prompt or terminal on your system.
[*]Use the following command to create a text file that lists all the PDF files you want to merge:

dir /b /s /o:n *.pdf > files.txt

This command will create a file named files.txt that contains the paths of all the PDF files in the current directory and its subdirectories.
[*]Use the Ghostscript command to merge the PDF files listed in the files.txt file:

gswin64c -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER -sOutputFile=merged.pdf @files.txt

This command tells Ghostscript to use the pdfwrite device to merge the PDF files listed in the files.txt file. The merged PDF file will be named merged.pdf.Note: If you're using a 32-bit version of Ghostscript, replace gswin64c with gswin32c in the command.
[*]After running the command, Ghostscript will merge the PDF files and create a new file named merged.pdf in the same directory as the command prompt or terminal.
That's it! You have successfully merged multiple PDF files using Ghostscript with wildcards.






emuemu 发表于 2024-6-5 16:47:04

https://www.ghostscript.com/releases/gsdnld.html

lxt19800925 发表于 2024-6-5 19:24:36

这样就需要智能了,真的还没见过,也想知道有什么工具软件可以做到

红动中国 发表于 2024-6-6 12:22:32

批量合成应该会有很多僻陋,容易出错
页: 1 2 3 [4] 5
查看完整版本: 求个PDF多文件批量合并工具