You should get the executing assembly, then try to get the resource from the stream.
Also that resource location need to be right too.
System.Reflection.Assembly thisExe = System.Reflection.Assembly.GetExecutingAssembly();
System.IO.Stream file =
thisExe.GetManifestResourceStream("ZedGraph.Demo.ngc4414.jpg");
if (null != file) {
Image image = Image.FromStream(file);
}