System.IO.Path.Combine(Application.StartupPath, @"..\..\YourFile.JPG")
returns the absolute path to your file, but this will only work while you're working in VS because there is no bin\Debug when you deploy your app.
string path = Path.Combine(Application.StartupPath, @"..\..\YourFile.JPG");
FileStream stream = new FileStream(path, FileMode.Open, FileAccess.Read);
Image image = Image.FromStream(stream);
stream.Close();
If you plan on sending the file along with the exe, right click the file in Solution Explorer, select Include in project, right click again, select properties and set the Build Action : None and Copy to Output Directory : Copy if newer in the properties window, this will copy the file to your bin\Debug every time you build. Then you can use:
string path = Path.Combine(Application.StartupPath, "YourFile.JPG");
which will work in VS and when you deploy. Better yet embed the file as a resource in your executable for a cleaner deploy.