]> source.dussan.org Git - poi.git/commitdiff
fix commandline option in PPTX2PNG from quite to quiet
authorDominik Stadler <centic@apache.org>
Tue, 22 Dec 2015 22:36:33 +0000 (22:36 +0000)
committerDominik Stadler <centic@apache.org>
Tue, 22 Dec 2015 22:36:33 +0000 (22:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1721469 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xslf/util/PPTX2PNG.java

index 2f97426935ad101c639d953cbf5522f7232242eb..2ec85f5ac738f00bc03cc92e5a4ac9943b093423 100644 (file)
@@ -38,7 +38,7 @@ import org.apache.poi.sl.usermodel.SlideShowFactory;
 import org.apache.poi.util.JvmBugs;\r
 \r
 /**\r
- * An utulity to convert slides of a .pptx slide show to a PNG image\r
+ * An utility to convert slides of a .pptx slide show to a PNG image\r
  *\r
  * @author Yegor Kozlov\r
  */\r
@@ -53,7 +53,7 @@ public class PPTX2PNG {
             "    -slide <integer> 1-based index of a slide to render\n" +\r
             "    -format <type>   png,gif,jpg (,null for testing)" +\r
             "    -outdir <dir>    output directory, defaults to origin of the ppt/pptx file" +\r
-            "    -quite           do not write to console (for normal processing)";\r
+            "    -quiet           do not write to console (for normal processing)";\r
 \r
         System.out.println(msg);\r
         // no System.exit here, as we also run in junit tests!\r
@@ -70,7 +70,7 @@ public class PPTX2PNG {
         File file = null;\r
         String format = "png";\r
         File outdir = null;\r
-        boolean quite = false;\r
+        boolean quiet = false;\r
 \r
         for (int i = 0; i < args.length; i++) {\r
             if (args[i].startsWith("-")) {\r
@@ -82,8 +82,8 @@ public class PPTX2PNG {
                     format = args[++i];\r
                 } else if ("-outdir".equals(args[i])) {\r
                     outdir = new File(args[++i]);\r
-                } else if ("-quite".equals(args[i])) {\r
-                    quite = true;\r
+                } else if ("-quiet".equals(args[i])) {\r
+                    quiet = true;\r
                 }\r
             } else {\r
                 file = new File(args[i]);\r
@@ -114,7 +114,7 @@ public class PPTX2PNG {
             return;\r
         }\r
     \r
-        if (!quite) {\r
+        if (!quiet) {\r
             System.out.println("Processing " + file);\r
         }\r
         SlideShow<?,?> ss = SlideShowFactory.create(file, null, true);\r
@@ -134,7 +134,7 @@ public class PPTX2PNG {
         for(Slide<?,?> slide : slides) {\r
             if (slidenum == -1 || slideNo == slidenum) {\r
                 String title = slide.getTitle();\r
-                if (!quite) {\r
+                if (!quiet) {\r
                     System.out.println("Rendering slide " + slideNo + (title == null ? "" : ": " + title));\r
                 }\r
 \r
@@ -164,9 +164,11 @@ public class PPTX2PNG {
             slideNo++;\r
         }\r
         \r
-        if (!quite) {\r
+        if (!quiet) {\r
             System.out.println("Done");\r
         }\r
+        \r
+        ss.close();\r
     }\r
 \r
     @SuppressWarnings("unchecked")\r