소스 검색

Don't decode animated images

Cody Robibero 1 년 전
부모
커밋
86b77de522
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      src/Jellyfin.Drawing.Skia/SkiaEncoder.cs

+ 5 - 0
src/Jellyfin.Drawing.Skia/SkiaEncoder.cs

@@ -262,6 +262,11 @@ public class SkiaEncoder : IImageEncoder
                 return null;
             }
 
+            if (codec.FrameCount != 0)
+            {
+                throw new ArgumentException("Cannot decode images with multiple frames");
+            }
+
             // create the bitmap
             var bitmap = new SKBitmap(codec.Info.Width, codec.Info.Height, !requiresTransparencyHack);