Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/10/2005, 01:09
Avatar de royrojas
royrojas
 
Fecha de Ingreso: diciembre-2004
Mensajes: 458
Antigüedad: 20 años
Puntos: 3
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
__________________
roy rojas
Programación en Español: DotNetcr.com