■ BmpBitmapEncoder 클래스를 사용해 BMP 파일을 생성하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
using System.Collections.Generic; using System.IO; using System.Windows.Media; using System.Windows.Media.Imaging; int width = 128; int height = width; int stride = width / 8; byte[] pixelByteArray = new byte[height * stride]; List<Color> colorList = new List<Color> { Colors.Red, Colors.Blue, Colors.Green }; BitmapPalette bitmapPalette = new BitmapPalette(colorList); BitmapSource bitmapSource1 = BitmapSource.Create ( width, height, 96, 96, PixelFormats.Indexed1, bitmapPalette, pixelByteArray, stride ); FileStream stream = new FileStream("target.bmp", FileMode.Create); BmpBitmapEncoder encoder = new BmpBitmapEncoder(); encoder.Frames.Add(BitmapFrame.Create(bitmapSource1)); encoder.Save(stream); |