algunas funciones que te van a funcionar para esto, yo las utilizo en base de datos con el campo image
Código:
Public Property Foto() as Byte()
Get
Return mFoto
End Get
Set (ByVal Value as Byte())
mFoto = Value
End Set
End Property
Public Function FotoToImage() As Image
Try
Dim ms As New System.IO.MemoryStream(Me.Foto)
Dim valor As Image = Image.FromStream(ms)
ms.Close()
Return valor
Catch
End Try
End Function
Public Sub ImageToFoto(ByVal pFoto As Image)
Try
If Not IsNothing(pFoto) Then
Dim ms As New System.IO.MemoryStream()
pFoto.Save(ms, pFoto.RawFormat)
Me.Foto = ms.GetBuffer
ms.Close()
End If
Catch
End Try
End Sub
aqui hay un ejemplo de la tabla.
http://www.dotnetcr.com/index.aspx?ID=3&art=62