Anyone knows of a Python library that I could use to generate Powerpoint slideshows that contain simple text+images?

If not, I've seen someone mentioning openoffice-headless. Could I do the following:

  • create an Open Office Impress doc
  • use openoffice-headless lib to convert it to a temp ppt
  • serve that back to the user?

Any experience doing that?

link|improve this question

44% accept rate
feedback

1 Answer

Yes, for my work I designed something that does that exactly (allowing people to drop images on a shared drive and get an auto-generated powerpoint emailed to them). I use the python odf library (specifically odf.opendocument.OpenDocumentPresentation) library to create a odp file, and then convert it to powerpoint using unoconv.py script. Be aware that OpenOffice (which is being used by unoconv.py) occasionally freezes for me (e.g., I kill it and retry if it takes more than 5 minutes; typically converts in ~1s). The odf library has plenty of documentation and examples; to get a feel for it, here's the main section of the examples/photoalbum.py code:

import os,sys,getopt,struct
from cStringIO import StringIO
from odf.opendocument import OpenDocumentPresentation
from odf.style import Style, MasterPage, PageLayout, PageLayoutProperties, \
TextProperties, GraphicProperties, ParagraphProperties, DrawingPageProperties
from odf.text import P
from odf.draw  import Page, Frame, TextBox, Image

# also defined getImageData function that returns content_type, width, height of image.

outputfile = "photoalbum.odp"

doc = OpenDocumentPresentation()

# We must describe the dimensions of the page
pagelayout = PageLayout(name="MyLayout")
doc.automaticstyles.addElement(pagelayout)
pagelayout.addElement(PageLayoutProperties(margin="0pt", pagewidth="800pt",
    pageheight="600pt", printorientation="landscape"))

# Style for the title frame of the page
# We set a centered 34pt font with yellowish background
titlestyle = Style(name="MyMaster-title", family="presentation")
titlestyle.addElement(ParagraphProperties(textalign="center"))
titlestyle.addElement(TextProperties(fontsize="34pt"))
titlestyle.addElement(GraphicProperties(fillcolor="#ffff99"))
doc.styles.addElement(titlestyle)

# Style for the photo frame
photostyle = Style(name="MyMaster-photo", family="presentation")
doc.styles.addElement(photostyle)

# Create automatic transition
dpstyle = Style(name="dp1", family="drawing-page")
dpstyle.addElement(DrawingPageProperties(transitiontype="automatic",
   transitionstyle="move-from-top", duration="PT5S"))
doc.automaticstyles.addElement(dpstyle)

# Every drawing page must have a master page assigned to it.
masterpage = MasterPage(name="MyMaster", pagelayoutname=pagelayout)
doc.masterstyles.addElement(masterpage)

if len(args) == 0:
    pict_dir = "."
else:
    pict_dir = args[0]
# Slides
for picture in os.listdir(pict_dir):
    try:
        pictdata = open(pict_dir + "/" + picture).read()
    except:
        continue
    ct,w,h = getImageInfo(pictdata) # Get dimensions in pixels
    if ct != 'image/jpeg':
        continue
    if w > 720:
       h = float(h) * 720.0 / float(w)
       w = 720.0
    if h > 540.0:
       w = float(w) * 540.0 / float(h)
       h = 540.0

    page = Page(stylename=dpstyle, masterpagename=masterpage)
    doc.presentation.addElement(page)
    titleframe = Frame(stylename=titlestyle, width="720pt", height="56pt", x="40pt", y="10pt")
    page.addElement(titleframe)
    textbox = TextBox()
    titleframe.addElement(textbox)
    textbox.addElement(P(text=picture))

    offsetx = 400.0 - w/2.0
    photoframe = Frame(stylename=photostyle, width="%fpt" % w, height="%fpt" % h, x="%fpt" % offsetx, y="56pt")
    page.addElement(photoframe)
    href = doc.addPicture(pict_dir + "/" + picture)
    photoframe.addElement(Image(href=href))

doc.save(outputfile)
link|improve this answer
ODF is definitely they way to go. Your other choices would be to use pywin32 to access the COM objects for Powerpoint or Ironpython to access the MS Office Interop assemblies. If you are trying to anything beyond the bare basics, you end up writing too much VB code within python – WombatPM Feb 14 '11 at 19:20
@WombatPM: Yes, and the other solutions require an being in an OS capable of running MS office; whereas ODF is cross-platform (and I run my script on a linux box for simplicity). – dr jimbob Feb 14 '11 at 19:24
Thanks jimbob, I am running Linux as well so MS dependencies are not an option. I'll give your solution a try, thanks! – Rok Feb 15 '11 at 15:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.