如何在 Ruby 中将 ppt 转换为图像?
我使用 Ruby 在网页中显示 powerpoint 文件的内容。我找到了使用 win32ole 的解决方案,但我在 linux 环境中,它不起作用。我认为该应用程序可以触发 openoffice 命令进行转换。
I'm using Ruby for displaying the contents of powerpoint files in a webpage. I've found solutions using the win32ole but I'm in the linux environment and it doesn't work. I think the application could trigger a openoffice command for conversion.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用 Docsplit。
安装 gem,然后你可以执行以下操作:
I recommend using Docsplit.
Install the gem, and then you can do something like:
您可以使用 Rjb 和 JODConverter 将您的 powerpoint 导出到 flash(或 任何其他格式)。
下面是一段代码:
您需要启动一个 OOo.org 服务器:
并将
jodconverter-cli-XXXjar
添加到您的 CLASSPATHYou can use Rjb and JODConverter to export your powerpoint to flash (or any other format).
Here is a pice of code to do it :
You need to start an OOo.org server :
And to add
jodconverter-cli-X.X.X.jar
to your CLASSPATH