■ TiffBitmapEncoder 클래스를 사용해 TIFF 파일을 생성하는 방법을 보여준다.
▶ 예제 코드 (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 |
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]; BitmapPalette bitmapPalette = BitmapPalettes.WebPalette; BitmapSource bitmapSource = BitmapSource.Create ( width, height, 96, 96, PixelFormats.Indexed1, bitmapPalette, pixelByteArray, stride ); FileStream stream = new FileStream("target.tif", FileMode.Create); TiffBitmapEncoder encoder = new TiffBitmapEncoder(); encoder.Compression = TiffCompressOption.Zip; encoder.Frames.Add(BitmapFrame.Create(bitmapSource)); encoder.Save(stream); |