我的情况是,我必须以编程方式构建 PowerPoint 演示文稿并通过 Web 应用程序提供生成的 ppt 文件,最好使用 Rails、JavaScript 或 Ruby。这可能吗?如果是这样,如何以及使用哪些工具?
我对如何最好地解决这个问题的任何建议持开放态度。谢谢!
我的情况是,我必须以编程方式构建 PowerPoint 演示文稿并通过 Web 应用程序提供生成的 ppt 文件,最好使用 Rails、JavaScript 或 Ruby。这可能吗?如果是这样,如何以及使用哪些工具?
我对如何最好地解决这个问题的任何建议持开放态度。谢谢!
这颗红宝石似乎比当前接受的答案中提到的更成熟。
https://github.com/pythonicrubyist/powerpoint http://rubygems.org/gems/powerpoint
require 'powerpoint'
@deck = Powerpoint::Presentation.new
# Creating an introduction slide:
title = 'Bicycle Of the Mind'
subtitle = 'created by Steve Jobs'
@deck.add_intro title, subtitle
# Creating a text-only slide:
# Title must be a string.
# Content must be an array of strings that will be displayed as bullet items.
title = 'Why Mac?'
content = ['Its cool!', 'Its light.']
@deck.add_textual_slide title, content
# Creating an image Slide:
# It will contain a title as string.
# and an embeded image
title = 'Everyone loves Macs:'
image_path = 'samples/images/sample_gif.gif'
@deck.add_pictorial_slide title, image_path
# Specifying coordinates and image size for an embeded image.
# x and y values define the position of the image on the slide.
# cx and cy define the width and height of the image.
# x, y, cx, cy are in points. Each pixel is 12700 points.
# coordinates parameter is optional.
coords = {x: 124200, y: 3356451, cx: 2895600, cy: 1013460}
@deck.add_pictorial_slide title, image_path, coords
# Saving the pptx file to the current directory.
@deck.save('test.pptx')
http://tomasvarsavsky.com/2009/04/04/simple-word-document-template-using-ruby-and-xml/
如果您可以创建模板并填充值,请考虑这种方法。
Office Open XML 文件格式
新的 Office 文件格式(.docx、.xlsx、.pptx 文件)基本上是 XML 文件的压缩集合。我们专注于 Word 文件 (.docx),但这种方法也适用于任何其他类型的文件。格式规范有几千页。如果没有专门构建的库来处理格式的所有复杂性,从头开始生成文件将是一项艰巨的任务。相反,我们在 Word 中起草模板并放置标记来告诉我们的模板引擎在哪里插入值。我们创建了引用数据值的文档属性,并将这些作为字段添加到文档中应该插入值的位置。例如,我们可以有如下字段:
label_tag #{data[:user].name}
label_tag #{data[:user].address}
label_tag #{data[:booking].number}
label_tag #{data[:booking].items.collect{|i| i.name}.join(‘,’)}
否则,有一个尝试(三年前上传的 WIP,我不希望它完成,但应该有助于创建一种创建幻灯片的方法)创建 PowerPoint 幻灯片。这是代码示例
https://github.com/jpoz/rubypoint/blob/master/lib/rubypoint/presentation.rb
def new_slide
RubyPoint::Slide.new(self)
end