■ Bitmap 클래스에서 잠금없이 비트맵 파일을 로드하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
using System.Drawing; #region 잠금 없이 비트맵 로드하기 - LoadBitmapUnlocked(filePath) /// <summary> /// 잠금 없이 비트맵 로드하기 /// </summary> /// <param name="filePath">파일 경로</param> /// <returns>비트맵</returns> public Bitmap LoadBitmapUnlocked(string filePath) { using(Bitmap bitmap = new Bitmap(filePath)) { return new Bitmap(bitmap); } } #endregion |