We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1ab884 commit 7e8dca2Copy full SHA for 7e8dca2
src/ImageSharp/Formats/Gif/GifEncoderCore.cs
@@ -189,7 +189,7 @@ private void EncodeAdditionalFrames<TPixel>(
189
// This frame is reused to store de-duplicated pixel buffers.
190
// This is more expensive memory-wise than de-duplicating indexed buffer but allows us to deduplicate
191
// frames using both local and global palettes.
192
- using ImageFrame<TPixel> encodingFrame = new(previousFrame.GetConfiguration(), previousFrame.Size());
+ using ImageFrame<TPixel> encodingFrame = new(previousFrame.Configuration, previousFrame.Size());
193
194
for (int i = 1; i < image.Frames.Count; i++)
195
{
0 commit comments