Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Bitmap on the fly

Status
Not open for further replies.

Proqrammer

Programmer
Sep 17, 2006
64
Hi there,
Is there anyway to have a bitmap object (system.drawing.bitmap) on the fly? I read my images from database and I don't want to save them somewhere before showing them in a picture box, so it would be really nice if I could create a bitmap variable and read the data from database and then simply put the data in the object and show it.

Thanks

Have a look at my website,
 
Here's a little article that will help you.

Sample of the article :

Code:
' This function returns the image retrieved from the database
Private Function GetImageFromDB(ByVal ImageID As Integer) As Image    
    Dim image As Image
    ...
    ...

    Try
        sqlCommand = "SELECT Image FROM ImageTable WHERE ImageID = "_
                     + ImageID.ToString()
        
        ...
               
        Dim dr As SqlDataReader
        dr = cmd.ExecuteReader()
        While (dr.Read())

            Dim byt As Byte()
            byt = dr.Item(strImage)
            ' Convert the image bytes to System.Drawing.Image
            Dim bmp As New Bitmap(New System.IO.MemoryStream(byt))
            image = bmp
                    
        End While
    
    ...
    
    End Try

    Return image

End Function
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top