2

我正在尝试编写一个例程,该例程将使用 LibTiff.net 将 WPF BitmapSource 保存为 JPEG 编码的 TIFF。使用 LibTiff 提供的示例,我想出了以下内容:

private void SaveJpegTiff(BitmapSource source, string filename)
    {

        if (source.Format != PixelFormats.Rgb24) source = new FormatConvertedBitmap(source, PixelFormats.Rgb24, null, 0);


        using (Tiff tiff = Tiff.Open(filename, "w"))
        {
            tiff.SetField(TiffTag.IMAGEWIDTH, source.PixelWidth);
            tiff.SetField(TiffTag.IMAGELENGTH, source.PixelHeight);
            tiff.SetField(TiffTag.COMPRESSION, Compression.JPEG);
            tiff.SetField(TiffTag.PHOTOMETRIC, Photometric.RGB);

            tiff.SetField(TiffTag.ROWSPERSTRIP, source.PixelHeight);

            tiff.SetField(TiffTag.XRESOLUTION,  source.DpiX);
            tiff.SetField(TiffTag.YRESOLUTION, source.DpiY);

            tiff.SetField(TiffTag.BITSPERSAMPLE, 8);
            tiff.SetField(TiffTag.SAMPLESPERPIXEL, 3);

            tiff.SetField(TiffTag.PLANARCONFIG, PlanarConfig.CONTIG);

            int stride = source.PixelWidth * ((source.Format.BitsPerPixel + 7) / 8);

            byte[] pixels = new byte[source.PixelHeight * stride];
            source.CopyPixels(pixels, stride, 0);

            for (int i = 0, offset = 0; i < source.PixelHeight; i++)
            {
                tiff.WriteScanline(pixels, offset, i, 0);
                offset += stride;
            }
        }

        MessageBox.Show("Finished");
    }

这会转换图像,我可以看到 JPEG 图像,但颜色混乱。我猜我错过了 TIFF 的一个或两个标签,或者像光度解释这样的错误,但并不完全清楚需要什么。

干杯,

4

1 回答 1

0

目前尚不清楚您所说的“颜色混乱”是什么意思,但您可能应该将 BGR 样本转换BitmapSource为 LibTiff.Net 所期望的 RGB 样本。

WriteScanline我的意思是,在将像素提供给方法之前,请确保颜色通道的顺序是 RGB(很可能不是) 。

于 2012-09-24T16:40:32.197 回答