Connecting Tech Pros Worldwide Help | Site Map

BMP file included as a resource

  #1  
Old November 20th, 2005, 03:36 AM
Scott Meddows
Guest
 
Posts: n/a
I've added a BMP file to my project file in Visual Studio and told the
compiler to embed the file into the binary. How do I now read this file
back into a filestream?

Thanks


  #2  
Old November 20th, 2005, 03:36 AM
Justin Weinberg
Guest
 
Posts: n/a

re: BMP file included as a resource


Created with my new tool. Look at the ImageFromEmbedded method below.

'GDIPlus Architect Component Class Output
Public Class Untitled1
Inherits System.ComponentModel.Component

Private Image1Rectangle As System.Drawing.RectangleF = New
System.Drawing.RectangleF(41, 84, 338, 410)

Protected Image1 As System.Drawing.Bitmap

Public Sub New()
MyBase.New
Me.InitializeGraphics
End Sub

Private Sub InitializeGraphics()
Me.Image1 = Me.ImageFromEmbedded("MynameSpace.akeef.jpg")
End Sub

Public Overridable Sub RenderGraphics(ByVal g As
System.Drawing.Graphics)
g.DrawImage(Me.Image1, Me.Image1Rectangle)
End Sub

'Required to dispose of created resources
Private Sub DisposeGraphics()
Me.Image1.Dispose
End Sub

Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
Me.DisposeGraphics
End If
End Sub

Private Function ImageFromEmbedded(ByVal embeddedPath As String) As
System.Drawing.Bitmap
Dim imageStream As System.IO.Stream =
System.Reflection.Assembly.GetExecutingAssembly.Ge tManifestResourceStream(em
beddedPath)
Dim img As System.Drawing.Bitmap = New
System.Drawing.Bitmap(imageStream)
Return img
End Function
End Class


"Scott Meddows" <scott_meddows_no_spm@tsged.com> wrote in message
news:eSKnGhCjDHA.3204@tk2msftngp13.phx.gbl...[color=blue]
> I've added a BMP file to my project file in Visual Studio and told the
> compiler to embed the file into the binary. How do I now read this file
> back into a filestream?
>
> Thanks
>
>[/color]


  #3  
Old November 20th, 2005, 03:36 AM
Herfried K. Wagner [MVP]
Guest
 
Posts: n/a

re: BMP file included as a resource


"Scott Meddows" <scott_meddows_no_spm@tsged.com> scripsit:[color=blue]
> I've added a BMP file to my project file in Visual Studio and told the
> compiler to embed the file into the binary. How do I now read this file
> back into a filestream?[/color]

<http://www.google.de/groups?selm=uhBexmVhDHA.2516%40TK2MSFTNGP09.phx.gb l>

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
  #4  
Old November 20th, 2005, 03:37 AM
Tom Spink
Guest
 
Posts: n/a

re: BMP file included as a resource


Hi Scott,

Imports System.IO
Imports System.Reflection
..
..
..
Dim strmImage As Stream =
[Assembly].GetExecutingAssembly.GetManifestResourceStream("R ootNamespace.Fil
e.bmp")

--
HTH,
-- Tom Spink, Über Geek

Please respond to the newsgroup,
so all can benefit

" System.Reflection Master "

==== Converting to 2002 ====
Remove inline declarations


"Scott Meddows" <scott_meddows_no_spm@tsged.com> wrote in message
news:eSKnGhCjDHA.3204@tk2msftngp13.phx.gbl...[color=blue]
> I've added a BMP file to my project file in Visual Studio and told the
> compiler to embed the file into the binary. How do I now read this file
> back into a filestream?
>
> Thanks
>
>[/color]


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Accelerator Resources Rabbit answers 18 April 26th, 2007 05:03 PM
Still playing with bitmap images Earl answers 7 December 3rd, 2006 12:45 AM
Adding bitmaps to project Derek Martin answers 6 November 20th, 2005 06:54 PM
resources in vs.net Marcus Ahlberg answers 5 November 15th, 2005 06:20 AM