■ Bitmap 클래스를 사용해 바이트 배열을 구하는 방법을 보여준다.
▶ Bitmap 클래스 : 바이트 배열 구하기 예제 (C#)
1 2 3 4 5 6 7 |
using System.Drawing; Bitmap bitmap = Bitmap.FromFile("c:\\sample.jpg") as Bitmap; byte[] byteArray = GetByteArray(bitmap); |
▶ Bitmap 클래스 : 바이트 배열 구하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
using System.ComponentModel; using System.Drawing; #region 바이트 배열 구하기 - GetByteArray(sourceBitmap) /// <summary> /// 비트맵 바이트 배열 구하기 /// </summary> /// <param name="sourceBitmap">소스 비트맵</param> /// <returns>바이트 배열</returns> public byte[] GetByteArray(Bitmap sourceBitmap) { TypeConverter typeConverter = TypeDescriptor.GetConverter(typeof(Bitmap)); byte[] byteArray = (byte[])typeConverter.ConvertTo(sourceBitmap, typeof(byte[])); return byteArray; } #endregion |