Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

vb . का उपयोग करके डेटाबेस mysql में छवि पुनर्प्राप्त करें

त्रुटि आपकी छवि को पुनः प्राप्त करने में है। आपको पहले छवि को बाइट सरणी में बदलने की आवश्यकता है। इससे पहले कि आप इसे चित्र बॉक्स में प्रदर्शित करें ..

 Public Function ResizeImageWithAspect(ByVal picImage As Image, ByVal newWidth As Integer) As Bitmap
    Dim original As Image = picImage
    If Not original Is Nothing Then
        //Find the aspect ratio between the height and width.
        Dim aspect As Single = CSng(original.Height) / CSng(original.Width)

        //Calculate the new height using the aspect ratio
        // and the desired new width.
        Dim newHeight As Integer = CInt((newWidth * aspect))

        //Create a bitmap of the correct size.
        Dim temp As New Bitmap(newWidth, newHeight, original.PixelFormat)

        //Get a Graphics object from the bitmap.
        Dim newImage As Graphics = Graphics.FromImage(temp)

        //Draw the image with the new width/height
        newImage.DrawImage(original, 0, 0, newWidth, newHeight)

        //Dispose of our objects.
        Return temp
        original.Dispose()
        temp.Dispose()
        newImage.Dispose()
    Else
        Return Nothing
    End If

End Function

Public Function ByteToImage(ByVal blob() As Byte) As Bitmap
    Dim mStream As New System.IO.MemoryStream
    Dim pData() As Byte = DirectCast(blob, Byte())
    mStream.Write(pData, 0, Convert.ToInt32(pData.Length))
    Dim bm As Bitmap = New Bitmap(mStream, False)
    mStream.Dispose()
    Return bm
End Function

Public Function FileImageToByte(ByVal filePath As String) As Byte()
    Dim fs As FileStream = New FileStream(filePath, FileMode.Open, FileAccess.Read)
    Dim br As BinaryReader = New BinaryReader(fs)
    Dim bm() As Byte = br.ReadBytes(fs.Length)
    br.Close()
    fs.Close()
    Dim photo() As Byte = bm
    Return photo
End Function

के लिए अधिक जानकारी इस लिंक को देखें



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. php mysql लंबे और अव्यक्त की तुलना करें, 10 मील के नीचे वाले को लौटाएं

  2. कैसे जांचें कि MySQL तालिका UTF-8 है और इसमें StorageEngine InnoDB है?

  3. XSD से MySQL स्कीमा

  4. राइट जॉइन बराबर लेफ्ट जॉइन?

  5. mysql ड्राइवर को jboss में नहीं जोड़ा जा सकता