0

我正在尝试将多页彩色 tiff 文件转换为 C# 中的 ac# CompressionCCITT3 tiff。我意识到我需要确保所有像素都是 1 位。我没有在网上找到一个有用的例子。

4

4 回答 4

1

您需要这种转换,因为 CCITT3 和 CCITT4 不支持颜色(如果我没记错的话)。

于 2008-09-05T02:21:06.953 回答
1

拉皮条免责声明:我在 Atalasoft 工作这是一家生产 .NET 成像软件的公司。

使用dotImage,这个任务变成了这样:

FileSystemImageSource source = new FileSystemImageSource("path-to-your-file.tif", true); // true = loop over all frames
// tiff encoder will auto-select an appropriate compression - CCITT4 for 1 bit.
TiffEncoder encoder = new TiffEncoder();
encoder.Append = true;

// DynamicThresholdCommand is very good for documents.  For pictures, use DitherCommand
DynamicThresholdCommand threshold = new DynamicThresholdCommand();

using (FileStream outstm = new FileStream("path-to-output.tif", FileMode.Create)) {
    while (source.HasMoreImages()) {
        AtalaImage image = source.AcquireNext();
        AtalaImage finalImage = image;
        // convert when needed.
        if (image.PixelFormat != PixelFormat.Pixel1bppIndexed) {
            finalImage = threshold.Apply().Image;
        }
        encoder.Save(outstm, finalImage, null);
        if (finalImage != image) {
            finalImage.Dispose();
        }
        source.Release(image);
    }
}

鲍勃鲍威尔的例子很好,就目前而言,但它有很多问题,其中最重要的是它使用了一个简单的阈值,如果你想要速度并且实际上并不关心你的输出,那就太棒了看起来或者您的输入域已经非常黑白 - 只是用颜色表示。二值化是一个棘手的问题。当您的任务是将可用信息减少 1/24 时,如何保留正确的信息并丢弃其余信息是一个挑战。DotImage 有六种不同的二值化工具(IIRC)。从我的角度来看,SimpleThreshold 是桶底。

于 2009-09-01T18:55:22.760 回答
1

我建议在深入编码之前先使用 tiff 和图像实用程序来试验所需的结果。我发现VIPS是一个方便的工具。下一个选项是研究 LibTIFF 可以做什么。我使用 c# 使用免费的LibTiff.NET取得了不错的效果(另请参见stackoverflow)。我对 GDI tiff 功能感到非常失望,尽管您的里程可能会有所不同(我需要缺少的 16 位灰度)。您也可以使用LibTiff实用程序(即参见http://www.libtiff.org/man/tiffcp.1.html

于 2010-01-27T16:39:46.660 回答
0

我看到了上面的代码,它看起来像是在用手动逻辑转换每个像素。

这对你有用吗?

导入 System.Drawing.Imaging

'获取颜色tif文件

将 bmpColorTIF 调暗为新位图(“C:\color.tif”)

'选择tif的一个区域(将抓取所有帧)

将 rectColorTIF 调暗为新矩形(0, 0, bmpColorTIF.Width, bmpColorTIF.Height )

'将矩形克隆为 1 位颜色 tif

Dim bmpBlackWhiteTIF As Bitmap = bmpColorTIF.Clone(rectColorTIF, PixelFormat.Format1bppIndexed)

'用新的位图做你想做的事(保存等)

...

注意:有大量像素格式可供选择。

于 2009-09-01T18:34:21.617 回答