Skip to content

Commit

Permalink
fix a error with one frame spr
Browse files Browse the repository at this point in the history
  • Loading branch information
dr.abc committed Sep 9, 2024
1 parent e3dd29d commit 56c0e2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SPRView.Net.Lib/Class/Sprite.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ public static void Save(string[] files, Stream stream, int width, int height,
var path = files[i];
Image frame = Image.Load(path);
frame.Mutate(x => x.Resize(width, height));
do
while (frame.Frames.Count > 1)
{
image.Mutate(x => x.DrawImage(frame, new Point(0, height * bufferseek), 1.0f));
frame.Frames.RemoveFrame(0);
bufferseek++;
} while (frame.Frames.Count > 1);
};
frame.Dispose();
}
bool isAlphaTest = format == ISprite.SpriteFormat.AlphaTest;
Expand Down

0 comments on commit 56c0e2d

Please sign in to comment.