LoadBitmapFromResource
Create new Bitmap from resource image
Source
public static Bitmap LoadBitmapFromResource(this Assembly assembly, string imageResourcePath) {
var stream = assembly.GetManifestResourceStream(imageResourcePath);
return stream != null ? new Bitmap(stream) : null;
}
Example
Bitmap bitmap = Assembly.GetExecutingAssembly().LoadBitmapFromResource("Resources.Progress.gif");