일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- WPF
- convert
- git
- logging
- .net
- string
- Github
- coding-test
- dotNET
- windows10
- Microsoft
- windows
- C#
- File
- programmers
- 코딩테스트
- chashtag
- mysql
- ListView
- algorithm
- Visual Studio
- tls
- Process
- log
- nullable
- IValueConverter
- Binding
- Coding
- commit
- csharp
Archives
- Today
- Total
목록Visual Basic (1)
CHashtag
[Visual Basic] byte array를 image로 저장하기 (Byte Array to Image)
안녕하세요. 오늘은 Visual Basic에서 Byte Array를 이미지로 저장하는 방법에 대해 알아보도록 하겠습니다. 내용이 간단하니 별도의 설명 없이 바로 코드로 보여드리도록 하겠습니다. 코드 Imports System.IO Imports System.Drawing.Imaging Public Sub SaveImage(byteArray As Byte(), path As String, saveImageFormat As ImageFormat) Using memoryStream As New MemoryStream(byteArray) Dim image As Image = Image.FromStream(memoryStream) Dim directoryName As String = Path.GetDirector..
Visual Basic
2021. 9. 8. 23:10