You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2019/10/26 06:49:48 UTC

svn commit: r1868989 - /poi/trunk/ppt2png.sh

Author: centic
Date: Sat Oct 26 06:49:47 2019
New Revision: 1868989

URL: http://svn.apache.org/viewvc?rev=1868989&view=rev
Log:
Add script to convert PPT to PNGs

Added:
    poi/trunk/ppt2png.sh   (with props)

Added: poi/trunk/ppt2png.sh
URL: http://svn.apache.org/viewvc/poi/trunk/ppt2png.sh?rev=1868989&view=auto
==============================================================================
--- poi/trunk/ppt2png.sh (added)
+++ poi/trunk/ppt2png.sh Sat Oct 26 06:49:47 2019
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# find jar-file with highest version number
+for i in `ls build/dist/poi-*.jar | grep -v -- "-sources" | grep -v -- "-excelant" | grep -v -- "-ooxml"`;do
+	CP=$CP:$i
+done
+echo Using classpath $CP
+
+java -cp $CP org.apache.poi.hslf.examples.PPT2PNG "$@"

Propchange: poi/trunk/ppt2png.sh
------------------------------------------------------------------------------
    svn:executable = *



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org