자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb.net

IT HUB를 찾아주셔서 감사합니다.

기타 [vb.net] 이미지(png, jpg, bmp 등) 파일을 아이콘(ico) 파일로 변환

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 10,402회 작성일 20-09-14 01:25

본문

        Dim fileName As String = "EX.png"
        Dim newFileName As String = "ico.ico"
        Dim bmp As System.Drawing.Bitmap = System.Drawing.Image.FromFile(fileName, True)
        Dim ico As System.Drawing.Icon = System.Drawing.Icon.FromHandle(bmp.GetHicon())
        Dim icofs As Stream = File.Create(newFileName)
        ico.Save(icofs) : icofs.Close()
 


댓글목록

등록된 댓글이 없습니다.