我猜测,如果你需要你的队友能够选择任意两个 PDF,那么这需要编程到 UI 中,目前尚不可用。
但在走这条路之前,这是你需要的吗?还是说你这里指的是有限数量的 PDF 组合?如果是这样,为什么不在 PTXprint 外部将它们合并,然后只导入合并后的文件呢?我会使用 pdftk file1.pdf file2.pdf cat output newfile.pdf 来做到这一点,但我相信 Windows 上也有简单的方法。
或者,这很可能通过某种 sethook 来实现。缺点是,PDF 的位置需要作为文本字符串插入到代码中(而不是漂亮的 GUI 界面)。这是你能设置的,还是在你的队友的能力范围内?
I’m guessing that if you need your teammates to be able to select any two pdfs they want, then that will need to be programmed into the UI and isn’t currently available.
But before going that route, is that what you need? Or are you talking a limited number of combinations of pdfs here? If so, why not combine them outside of PTXprint and then just import the combined file. I’d do this using pdftk file1.pdf file2.pdf cat output newfile.pdf, but I’m sure there are easy ways to do it in Windows too.
Alternately, it’s probable that this could be done with some sort of sethook. The disadvantage of that is that the location of the pdfs would need to be inserted into the code as a text string (not a nice GUI interface). Is that something you could set up, or within the ability of your teammates?
机器翻译自 English