MemoryStream ms = new MemoryStream();
			bmp.Save(ms, ImageFormat.Png);
			byte[] buf = ms.ToArray();

Bitmap을 Png형식으로 buf에 저장한다.



+ Recent posts