mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-07 09:46:37 +08:00
项目结构调整
This commit is contained in:
21
Others/WpfAnimatedGif/Decoding/GifTrailer.cs
Normal file
21
Others/WpfAnimatedGif/Decoding/GifTrailer.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace WpfAnimatedGif.Decoding
|
||||
{
|
||||
internal class GifTrailer : GifBlock
|
||||
{
|
||||
internal const int TrailerByte = 0x3B;
|
||||
|
||||
private GifTrailer()
|
||||
{
|
||||
}
|
||||
|
||||
internal override GifBlockKind Kind
|
||||
{
|
||||
get { return GifBlockKind.Other; }
|
||||
}
|
||||
|
||||
internal static GifTrailer ReadTrailer()
|
||||
{
|
||||
return new GifTrailer();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user