コード例 #1
0
#pragma warning restore RECS0126 // This is generated by the compiler and can be safely removed
		public GifFrameSection(GifBitmap parent, GifImageDescriptorHeader header) : base(parent)
		{
			Header = header;
			if (LocalColorTableFlag)
				LocalColorMap = new Color[SizeOfLocalColorMap];
			else
				LocalColorMap = null;
		}
コード例 #2
0
		public GifFrameSection(GifBitmap parent) : base(parent)
		{
		}
コード例 #3
0
		public GifSection(GifBitmap parent)
		{
			Parent = parent;
			SectionName = this.GetType().Name.RemoveLeft("gif", IgnoreCase.Yes);
		}