2016-09-14 7 views
-2

처음에는 콤보 상자 드롭 다운에서 선택하여 지정한 폴더의 그림 상자에 그림 상자 (예 : 20 개의 이미지)를로드하고 그림 상자에 정상적으로로드합니다.그림 상자에로드 된 이미지를 지우려면 -C#

내가 직면하는 문제는 처리 할 이미지를 얻기 위해 다음 폴더를 선택하면 이전에 선택한 폴더 이미지도 다음 폴더 이미지 만 표시되고 그 후에 이미지 상자에 표시됩니다. 이미지를 지울 수 없습니다. 이전에로드 된 이미지

구체적으로 말하면, 드롭 다운에서 폴더를 클릭 할 때 특정 폴더 이미지를 picturebox 안에 넣고 싶습니다. 이전에로드 한 이미지는 필요하지 않습니다. VS2013에서 C#으로 작업하고 있습니다.

namespace WindowsFormsApplication1 
{ 
    public partial class Form1 : Form 
    { 
     ArrayList alist = new ArrayList(); 
     int i = 0; 
     int filelength = 0; 
     public Form1() 
     { 
      InitializeComponent(); 
     } 



     private void Form1_Load(object sender, EventArgs e) 
     { 
      DirectoryInfo di = new  DirectoryInfo(@"C:\Users\Arun\Desktop\scanned"); 
      DirectoryInfo[] folders = di.GetDirectories(); 
      comboBox1.DataSource = folders; 
     } 

     private void button7_Click(object sender, EventArgs e) 
     { 
      if (i + 1 < filelength) 
      { 
       pictureBox1.Image = Image.FromFile(alist[i + 1].ToString()); 
       i = i + 1; 
       pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; 
      } 
     } 

     private void button8_Click(object sender, EventArgs e) 
     { 

      if (i - 1 >= 0) 
      { 

       pictureBox1.Image = Image.FromFile(alist[i - 1].ToString()); 
       pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; 
       i = i - 1; 
      } 
     } 

     private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) 
     { 
      string selected = comboBox1.SelectedItem.ToString(); 
      String fullpath = Path.Combine(@"C:\Users\Arun\Desktop\scanned", selected); 
      DirectoryInfo di1 = new DirectoryInfo(fullpath); 
      DirectoryInfo[] folders1 = di1.GetDirectories(); 
      comboBox2.DataSource = folders1; 

     } 

     private void button9_Click(object sender, EventArgs e) 
     { 

      string selected1 = comboBox1.SelectedItem.ToString(); 
      string selected2 = comboBox2.SelectedItem.ToString(); 

         //Initially load all your image files into the array list when form load first time 
      System.IO.DirectoryInfo inputDir = new System.IO.DirectoryInfo(Path.Combine(@"C:\Users\Arun\Desktop\scanned", selected1, selected2)); //Source image folder path 


      try 
      { 


       if ((inputDir.Exists)) 
       { 

        //Get Each files 
        System.IO.FileInfo file = null; 
        foreach (System.IO.FileInfo eachfile in inputDir.GetFiles()) 
        { 
         file = eachfile; 
         if (file.Extension == ".tif") 
         { 
          alist.Add(file.FullName); //Add it in array list 
          filelength = filelength + 1; 
         } 
         else if(file.Extension == ".jpg") 
         { 

          alist.Add(file.FullName); //Add it in array list 
          filelength = filelength + 1; 
         } 
        } 

        pictureBox1.Image = Image.FromFile(alist[0].ToString()); //Display intially first image in picture box as sero index file path 
        pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; 
        i = 0; 

       } 
      } 
      catch (Exception ex) 
      { 

      } 

     } 

     private void Form1_KeyDown(object sender, KeyEventArgs e) 
     { 
      if(e.KeyCode == Keys.D) 
      { 
       if (i + 1 < filelength) 
       { 
        pictureBox1.Image = Image.FromFile(alist[i + 1].ToString()); 
        i = i + 1; 
        pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; 
       } 
      } 
      else if(e.KeyCode == Keys.A) 
      { 
       if (i - 1 >= 0) 
       { 

        pictureBox1.Image = Image.FromFile(alist[i - 1].ToString()); 
        pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; 
        i = i - 1; 
       } 
      } 
     } 


     private void comboBox2_SelectedIndexChanged(object sender, EventArgs e) 
     { 

     } 

    } 
} 
+0

[so]에 오신 것을 환영합니다. [ask]를 읽고 무엇을 시도했는지 보여주세요. – Prisoner

+1

간단한 Google 검색에서 여기 제안 사항이 있습니다. 새 이미지를로드하기 전에'pictureBox.Image = null; '을 시도하십시오. –

+0

picturebox1.image = null로 운동하지 않습니다. @ KeyurPATEL – warriors

답변

1

코드의 코드는 입니다.

새 파일 이름을로드하기 전에 alist을 지우지 않는 것이 좋습니다.

그래서 삽입 :

alist.Clear(); 

루프 후

filelength = alist.Count; 

//Get Each files 

전에 또한. 추가하는 동안 계산할 필요가 없습니다!

또한 ArrayList 거의 depracated되어 있습니다 그리고 당신은 사용해야 형태 보증 대신 강력한 List<T> :

List<string> alist = new List<string>(); 

물론 i라는 이름의 클래스 변수는 바보이고, 당신은 또한을 가지고 항상 의존 comboBox2에 SelectedItem이 있습니다.

그리고 이미지를 적절하게 폐기하지 않으므로 GDI 리소스가 누출됩니다.

당신은 제대로로드 이미지에 대해이 기능을 사용할 수 있습니다

: 그것은 처음 Image에 대한 참조를 생성

void loadImage(PictureBox pbox, string file) 
{ 
    if (pbox.Image != null) 
    { 
     var dummy = pbox.Image; 
     pbox.Image = null; 
     dummy.Dispose(); 
    } 
    if (File.Exists(file)) pbox.Image = Image.FromFile(file); 
} 

, 다음 PictureBox의 참조 해제 후 시도 마침내 ImageDispose에 대한 참조를 사용하고, 새 것을로드하십시오.