public void LoadGif(string path) { Text = Caption + ": " + path; g = GifParser.Parse(path); UpdateList(); }
private void button1_Click_1(object sender, EventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); ofd.Multiselect = true; if (ofd.ShowDialog() == DialogResult.OK) { GifContainer gifc = new GifContainer(); gifc.Header = new GifHeader(); //1. create pallete from tru color bitmaps using //File.WriteAllBytes("output.gif", ms.ToArray()); } }