vote up 1 vote down star
1

It's very easy to mark an image file to become an embedded resource however how does one access the image thereafter. Please can I have some example code?

flag

40% accept rate

4 Answers

vote up 1 vote down

Look at the third code snippet at http://msdn.microsoft.com/en-us/library/aa309403(VS.71).aspx

link|flag
vote up 0 vote down

The most direct method:

YourProjectsBaseNamespace.Properties.Resources.YourImageResourceName
link|flag
vote up 2 vote down

1) Adding and Editing Resources (Visual C#)

System.Drawing.Bitmap bitmap1 = myProject.Properties.Resources.Image01;

2) Accessing Embedded Resources using GetManifestResourceStream

Assembly _assembly = Assembly.GetExecutingAssembly();

Stream _imageStream = 
    _assembly.GetManifestResourceStream(
    "ThumbnailPictureViewer.resources.Image1.bmp");
Bitmap theDefaultImage = new Bitmap(_imageStream);
link|flag
1  
And, of course, you'd put a using statement around that Stream declaration... – bdukes Sep 30 '08 at 18:24
vote up 0 vote down
//Get the names of the embedded resource files;

List<string> resources = new List<string>(AssemblyBuilder.GetExecutingAssembly().GetManifestResourceNames());

//Get the stream

StreamReader sr = new StreamReader(
    			AssemblyBuilder.GetExecutingAssembly().GetManifestResourceStream(
    				resources.Find(target => target.ToLower().Contains("insert name here"))

You can convert from bitmap from the stream. The Bitmap class has a method that does this. LoadFromStream if my memory serves.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.