import org.codehaus.groovy.scriptom.*;
import org.codehaus.groovy.scriptom.tlb.office.*;
import org.codehaus.groovy.scriptom.tlb.office.powerpoint.*;
Scriptom.inApartment
{
ppa = new ActiveXObject("PowerPoint.Application")
ppa.Presentations.Open(new File("test1.pptx").canonicalPath,
Scriptom.MISSING, Scriptom.MISSING, MsoTriState.msoFalse)
ppa.Presentations(1).slides.add 1,PpSlideLayout.ppLayoutBlank
ppa.Presentations(1).saveAs(new File("test1result.pptx").canonicalPath)
ppa.Presentations(1).close()
ppa.quit()
}
元プレゼンテーション(test1.pptx)
出力プレゼンテーション(test1result.pptx)
動作環境
groovy1.7.0, JDK6 Update18, PowerPoint 2007
0 件のコメント:
コメントを投稿