Image - potatoscript/csharp GitHub Wiki

Image

Load Image

home

Load-Image

   private void myTextChanged(object sender, EventArgs e)
   {
      char[] sc = {'-'};
      var myImg = myText.Text.Split(sc,System.StringSplitOptions.RemoveEmptyEntries);
      try
      {
          Bitmap img = (Bitmap)Image.FromFile(@"http://.../myImage.jpg", true);
          myImg.Image = img;
      }
      catch(Exception e)
      {
          Bitmap img = (Bitmap)Image.FromFile(Application.StartupPath + "default.jpg");
      }
   }