自动将文本添加到图像并格式化打印的最佳方法?
这是我所拥有的:
四分之一张传单(每页 4 张),PSD 或 JPG 格式 每行一个文本条目的文本文件。
我想做的事情:
打印 100 张传单(在 25 张纸上) 通过某种脚本语言或 Photoshop 自动化任务,以某种方式自动化将文本添加到图像的过程。 然后格式化要打印的页面,要么生成 25 页的 PDF 文件,要么一次生成四页,然后逐页发送到打印机。
任何人有类似的经验或对我应该如何去做有任何建议吗?
感谢您的帮助!
Here's what I have:
Quarter Sheet Flyer (4 per page) as a PSD or JPG
Text file with one entry of text per line.
What I want to do:
Print out 100 flyers (on 25 pieces of paper)
Somehow automate the process of adding the text to the image, either via some scripting language or a Photoshop automated task. Then format the pages to print, either to generate a 25 page PDF file or generate four at a time and send them to the printer page by page.
Anyone have any experience with something like this or have any recommendations on how I should go about doing this?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Microsoft Word 自动化生成包含正确文本和图像的 Word 文件,然后直接打印。
这将是更简单的解决方案之一,您可以将整个事情实现为单词宏(VBA)。
更复杂的解决方案是使用VB6或.net将文本和图像打印到表单中,然后打印表单。
您可以编写一个脚本来生成包含图像和文本的 html 页面,然后使用浏览器打印出该 html。
You can use Microsoft Word automation to generate a word file with the correct text and image, and then just print it.
This would be one of the simpler solutions, you can implement the entire thing as a word macro (VBA).
A more complex solution would be to use VB6 or .net to print the text and the image into the form and then print the form.
You can write a script that will generate an html page with the image and the text, and then print out the html using a browser.