溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

VB.NET中怎么讀取圖像

發(fā)布時間:2021-07-19 16:10:00 來源:億速云 閱讀:529 作者:Leah 欄目:編程語言

VB.NET中怎么讀取圖像,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

VB.NET讀取圖像代碼示例:

  1. Public Function GetImageFromFile()
    Function GetImageFromFile(ByVal 
    pstrFileName As String) As Boolean  

  2. Dim strExt As String = "" '擴展文件名  

  3. Dim blnFlag As Boolean = False 

  4. If ((pstrFileName.IndexOf(":") 
    < 0) AndAlso (Not PictureHolder.
    mstrPath Is Nothing)) Then  

  5. pstrFileName = (PictureHolder.
    mstrPath & pstrFileName)  

  6. End If  

  7. If Not File.Exists(pstrFileName) Then  

  8. Return False  

  9. End If 

VB.NET讀取圖像取得擴展名

  1. strExt = Path.GetExtension
    (pstrFileName).ToLower  

  2. If strExt.Equals(".cur") Then  

  3. Try  

  4. Dim cursor As New Windows.Forms.
    Cursor(pstrFileName)  

  5. Dim targetRect As New Rectangle
    (New Point(0, 0), cursor.Size)  

  6. Me.mobjImage = New Bitmap(cursor
    .Size.Width, cursor.Size.Height)  

  7. Dim g As GraphicsGraphics = 
    Graphics.FromImage(Me.mobjImage)  

  8. cursor.Draw(g, targetRect)  

  9. cursor.Dispose()  

  10. Return True  

  11. Catch obj1 As Exception  

  12. Return False  

  13. End Try  

  14. End If  

  15. Try  

  16. Using stream As IO.FileStream = New IO.
    FileStream(pstrFileName, FileMode.
    Open, FileAccess.Read)  

  17. Dim stream2 As New IO.MemoryStream  

  18. Do While True  

  19. Dim count As Integer = stream.Read
    (PictureHolder.mbtyImage, 0, 
    PictureHolder.mbtyImage.Length)  

  20. If (count = 0) Then  

  21. Exit Do  

  22. End If  

  23. stream2.Write(PictureHolder.
    mbtyImage, 0, count)  

  24. Loop  

  25. stream2.Flush()  

  26. stream2.Position = 0 

若為 ico 類型,則使用 Drawing.Icon 打開圖像

  1. If strExt.Equals(".ico") Then  

  2. Me.mobjImage = New Drawing.
    Icon(stream2).ToBitmap  

  3. Else  

  4. Me.mobjImage = Drawing.Image.
    FromStream(stream2)  

  5. End If  

  6. blnFlag = True 

  7. End Using  

  8. Catch obj2 As Exception  

  9. blnFlag = False 

  10. End Try  

  11. Return blnFlag  

  12. End Function 

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI