arkadaşlar butona bastığım zaman seçtiğim resmi projemde resimler klasorune eklemek istiyorum. resim secip getiriyor fakat kırmızı kod satırını ekledığım zaman hata veriyor A generic error occurred in GDI+. nasıl kaydettirebilirim klasore OpenFileDialog ofd = new OpenFileDialog(); ofd.InitialDirectory = "C:\\"; ofd.Title = "Resim Seç"; ofd.Filter = "Resim Dosyası (*.jpg)|*jpg"; if (ofd.ShowDialog() == DialogResult.OK) { string fname = ""; fname = ofd.FileName; pictureBox1.Image = Image.FromFile(fname); pictureBox1.Image.Save(Application.StartupPath + "\\resimler\\" + pictureBox1.Image, System.Drawing.Imaging.ImageFormat.Jpeg); }
pictureBox1.Image.Save(Application.StartupPath + "\\resimler\\" + pictureBox1.Image, System.Drawing.Imaging.ImageFormat.Jpeg); kısmını pictureBox1.Image.Save(Application.StartupPath + "\\resimler\\deneme.jpg", System.Drawing.Imaging.ImageFormat.Jpeg); olarak değiştirip dener misin?