使用Rails创建powerpoint演示文稿

时间:2012-11-15 21:44:55

标签: javascript ruby-on-rails ruby web powerpoint

我处于一种情况,我必须以编程方式构建PowerPoint演示文稿,并通过Web应用程序提供最终的ppt文件,最好使用Rails,JavaScript或Ruby。这可能吗?如果是这样,如何以及使用哪些工具?

我对如何最好地解决这个问题的任何建议持开放态度。谢谢!

2 个答案:

答案 0 :(得分:6)

这颗红宝石似乎比目前接受的答案中提到的更为成熟。

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')

答案 1 :(得分:4)

http://tomasvarsavsky.com/2009/04/04/simple-word-document-templating-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(‘,’)}

否则,在创建PowerPoint幻灯片时,有一次尝试(三年前上传的WIP,我不希望它完成,但在创建创建幻灯片的方法方面应该是完美的)。以下是代码示例

https://github.com/jpoz/rubypoint/blob/master/lib/rubypoint/presentation.rb

def new_slide
  RubyPoint::Slide.new(self)
end