]> source.dussan.org Git - poi.git/commitdiff
From Bug 38289: Yegor's support for pictures embeded in PPT files
authorNick Burch <nick@apache.org>
Mon, 16 Jan 2006 18:27:51 +0000 (18:27 +0000)
committerNick Burch <nick@apache.org>
Mon, 16 Jan 2006 18:27:51 +0000 (18:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@369541 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestPictures.java [new file with mode: 0644]

diff --git a/src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestPictures.java b/src/scratchpad/testcases/org/apache/poi/hslf/usermodel/TestPictures.java
new file mode 100644 (file)
index 0000000..d40ed0e
--- /dev/null
@@ -0,0 +1,47 @@
+/* ====================================================================\r
+   Copyright 2002-2004   Apache Software Foundation\r
+\r
+   Licensed under the Apache License, Version 2.0 (the "License");\r
+   you may not use this file except in compliance with the License.\r
+   You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+==================================================================== */\r
+\r
+package org.apache.poi.hslf.usermodel;\r
+\r
+import org.apache.poi.hslf.*;\r
+import junit.framework.TestCase;\r
+\r
+import javax.imageio.ImageIO;\r
+import java.awt.image.BufferedImage;\r
+import java.io.ByteArrayInputStream;\r
+\r
+/**\r
+ * Test extracting images from a ppt file\r
+ *\r
+ * @author Yegor Kozlov\r
+ */\r
+public class TestPictures extends TestCase{\r
+\r
+    public void testPictures() throws Exception {\r
+        String dirname = System.getProperty("HSLF.testdata.path");\r
+        String filename = dirname + "/ppt_with_png.ppt";\r
+\r
+        HSLFSlideShow ppt = new HSLFSlideShow(filename);\r
+        Picture[] pict = ppt.getPictures();\r
+        assertNotNull(pict);\r
+        for (int i = 0; i < pict.length; i++) {\r
+            byte[] data = pict[i].getData();\r
+            BufferedImage img = ImageIO.read(new ByteArrayInputStream(data));\r
+            assertNotNull(img);\r
+        }\r
+        ppt.close();\r
+    }\r
+}\r