-
C# png파일 ico으로 바꾸기코딩Coding/C# 2023. 8. 24. 07:45728x90
using System.Drawing; { FileStream stream = File.OpenWrite(@"C:\Temp\test.ico") Bitmap bitmap = (Bitmap)Image.FromFile(@"C:\Temp\test.png"); Icon.FromHandle(bitmap.GetHicon()).Save(stream); }
https://stackoverflow.com/questions/8381455/converting-png-to-ico-in-c-c
https://gist.github.com/darkfall/1656050
반응형'코딩Coding > C#' 카테고리의 다른 글
Visual Studio Code & C# & Debugging | Beginners Guide (0) 2023.09.26 C#으로 모바일하기 (0) 2023.09.12 C#❤️델리게이트Delegate 이벤트Event (0) 2023.08.31 .Net ❤️Streamreader (0) 2023.08.24 C# beginners :- Assembly , EXE and DLL (0) 2023.08.14 What Is an ASPX File? (0) 2023.07.15 Powerful automated tool for reverse engineering Unity IL2CPP binaries (0) 2023.06.28 C# 내부 구현부까지 볼 수 있는 방법-DotPeek (0) 2023.06.07