]> source.dussan.org Git - poi.git/commitdiff
Bug 67767 - bump max picture size
authorTim Allison <tallison@apache.org>
Mon, 16 Oct 2023 10:42:53 +0000 (10:42 +0000)
committerTim Allison <tallison@apache.org>
Mon, 16 Oct 2023 10:42:53 +0000 (10:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1913004 13f79535-47bb-0310-9956-ffa450edef68

poi-scratchpad/src/main/java/org/apache/poi/hslf/usermodel/HSLFSlideShowImpl.java

index 53bf44300b205a45594887c3f51fd6d2ec8a81ee..29f76442e8b4a9529f592b68da6865e56826fd47 100644 (file)
@@ -94,7 +94,7 @@ public final class HSLFSlideShowImpl extends POIDocument implements Closeable {
     private static final int DEFAULT_MAX_RECORD_LENGTH = 200_000_000;
     private static final int MAX_DOCUMENT_SIZE = 100_000_000;
     private static int MAX_RECORD_LENGTH = DEFAULT_MAX_RECORD_LENGTH;
-    private static final int MAX_IMAGE_LENGTH = 10_000_000;
+    private static final int MAX_IMAGE_LENGTH = 150_000_000;
 
     // Holds metadata on where things are in our document
     private CurrentUserAtom currentUser;