public static KepSor KitomoritSor(string tomoritettSor) { KepSor kitomoritettSor = new KepSor(); string[] darabok = tomoritettSor.Trim().Split(' '); foreach (string darab in darabok) { if (darab.Contains("#")) { string[] reszek = darab.Split('#'); int db = Convert.ToInt32(reszek[0]); Pixel elem = Pixel.FromString(reszek[1]); for (int i = 0; i < db; i++) { kitomoritettSor.Add(elem); } } else { kitomoritettSor.Add(Pixel.FromString(darab)); } } return(kitomoritettSor); }
private void megnyitasToolStripMenuItem_Click(object sender, EventArgs e) { DialogResult result = fajlMegnyito.ShowDialog(); if (result == DialogResult.OK) { string kepFajl = fajlMegnyito.FileName; string kiterjesztes = kepFajl.Split('.').Last(); StreamReader file = new StreamReader(kepFajl); Kep kep = new Kep(); if (kiterjesztes == "kep") { while (!file.EndOfStream) { KepSor pixelSor = new KepSor(); string sor = file.ReadLine(); string[] pixelek = sor.Trim().Split(' '); foreach (string pixel in pixelek) { pixelSor.Add(Pixel.FromString(pixel)); } kep.Add(pixelSor); } } else if (kiterjesztes == "tkep") { string tomoritett = file.ReadToEnd(); kep = Tomorito.KitomoritMatrix(tomoritett); } file.Close(); kepHelye.Image = KepBetolt(kep); } }