반응형
아래 코드는 dll 파일이 있는 경로를 가지고 와서 해당 경로 밑의 image 폴더의 "title bar.JPG" 이미지를 불러온다.
using System.IO; using System.Reflection; string exePath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); string path = Path.Combine(exePath, "image"); string filePath = Path.Combine(path, "title bar.JPG"); Image img; if (File.Exists(filePath)) img = Image.FromFile(filePath);
반응형
'C#' 카테고리의 다른 글
메모리 상의 비트맵 이미지 파일로 저장하기 (0) | 2016.01.21 |
---|---|
빌드시 bin 폴더로 리소스(이미지 등) 복사하기, 출력 디렉터리로 복사 (0) | 2016.01.18 |
.NET Assembly Obfuscation(난독화) (0) | 2016.01.11 |
RSACryptoServiceProvider 암호화 (0) | 2016.01.08 |
Regex 정규식 (0) | 2016.01.08 |
댓글