C#: Accessing image added to project folder
I once wondered about this too, so I figured it out and put it in a blog post. For your example, it should be something like this:
var a = Assembly.GetExecutingAssembly(); // Or another Get method if you need to get it from some other assembly
var image = Image
.FromStream(a.GetManifestResourceStream("DefaultNameSpace.Graphics.image.bmp"));
Remember to mark the image as an Embedded Resource and to dispose of the image when done so you don't get any leakage :)
You can load an image directly from the filesystem
Image img = Image.FromFile( "\Graphics\ImageName.bmp" );
The MSDN documentation is here
http://msdn.microsoft.com/en-us/library/system.drawing.image.fromfile.aspx
Obviously you would need to know the directory and name you are loading from.