You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
584 B
20 lines
584 B
11 months ago
|
// Licensed under the MIT License.
|
||
|
// Copyright (C) 2018 Jumar A. Macato, All Rights Reserved.
|
||
|
|
||
|
namespace Avalonia.Gif.Decoding
|
||
|
{
|
||
|
public class GifHeader
|
||
|
{
|
||
|
public bool HasGlobalColorTable;
|
||
|
public int GlobalColorTableSize;
|
||
|
public ulong GlobalColorTableCacheId;
|
||
|
public int BackgroundColorIndex;
|
||
|
public long HeaderSize;
|
||
|
internal int Iterations = -1;
|
||
|
public GifRepeatBehavior IterationCount;
|
||
|
public GifRect Dimensions;
|
||
|
private GifColor[] _globarColorTable;
|
||
|
public GifColor[] GlobarColorTable;
|
||
|
}
|
||
|
}
|