Bug 67767 - bump max picture size

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1913004 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tim Allison 2023-10-16 10:42:53 +00:00
parent edef04dce7
commit f869dc6f74
1 changed files with 1 additions and 1 deletions

View 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;