S extends Shape<S,P>,
P extends TextParagraph<S,P,? extends TextRun>
> SlideShow<S,P> createSlideShow(String factoryClass, Object[] args) throws IOException, EncryptedDocumentException {
+ final Class<?> clazz;
+ try {
+ clazz = SlideShowFactory.class.getClassLoader().loadClass(factoryClass);
+ } catch (ClassNotFoundException e) {
+ throw new IOException(factoryClass+" not found - check if poi-scratchpad.jar is on the classpath.");
+ }
try {
- Class<?> clazz = SlideShowFactory.class.getClassLoader().loadClass(factoryClass);
Class<?>[] argsClz = new Class<?>[args.length];
int i=0;
for (Object o : args) {
import javax.imageio.ImageIO;
import org.apache.poi.common.usermodel.GenericRecord;
+import org.apache.poi.sl.draw.BitmapImageRenderer;
import org.apache.poi.sl.draw.DrawPictureShape;
import org.apache.poi.sl.draw.Drawable;
import org.apache.poi.sl.draw.ImageRenderer;
}
final Dimension2D pgsize = proxy.getSize();
+
final double lenSide;
switch (fixSide) {
default:
graphics.dispose();
img.flush();
}
+ } catch (NoScratchpadException e) {
+ usage("'"+file.getName()+"': Format not supported - try to include poi-scratchpad.jar into the CLASSPATH.");
+ return;
}
if (!quiet) {
@Override
public void parse(File file) throws IOException {
- ppt = SlideShowFactory.create(file, null, true);
+ try {
+ ppt = SlideShowFactory.create(file, null, true);
+ } catch (IOException e) {
+ if (e.getMessage().contains("scratchpad")) {
+ throw new NoScratchpadException(e);
+ } else {
+ throw e;
+ }
+ }
slide = ppt.getSlides().get(0);
}
@Override
public void parse(File file) throws IOException {
imgr = DrawPictureShape.getImageRenderer(null, getContentType());
+ if (imgr instanceof BitmapImageRenderer) {
+ throw new NoScratchpadException();
+ }
+
// stream needs to be kept open
is = file.toURI().toURL().openStream();
imgr.loadImage(is, getContentType());
}
}
+ private static class NoScratchpadException extends IOException {
+ public NoScratchpadException() {
+ }
+
+ public NoScratchpadException(Throwable cause) {
+ super(cause);
+ }
+ }
}
@Test
public void render() throws Exception {
- assumeFalse("ignore HSLF / .ppt files in no-scratchpad run", xslfOnly && pptFile.toLowerCase(Locale.ROOT).endsWith("ppt"));
-
+ assumeFalse("ignore HSLF (.ppt) / HEMF (.emf) / HWMF (.wmf) files in no-scratchpad run", xslfOnly && pptFile.matches(".*\\.(ppt|emf|wmf)$"));
+
String[] args = {
"-format", "null", // png,gif,jpg or null for test
"-slide", "-1", // -1 for all