-
As discussed in #2870 I am working with some very large images, and I'm running into some hardcoded limitations in ImageSharp, namely Would it be possible to either make the maximum allocation size configurable through the |
Beta Was this translation helpful? Give feedback.
Answered by
tocsoft
Feb 4, 2025
Replies: 1 comment 1 reply
-
you can configure/override this default via Configuration.MemoryAllocator = MemoryAllocator.Create(new MemoryAllocatorOptions {
AllocationLimitMegabytes = 8000 // 8GB
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
aevitas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you can configure/override this default via
Configuration
.