20

有人知道如何使用 C# 正确识别 CMYK 图像吗?我找到了使用 ImageMagick 的方法,但我需要一个 .NET 解决方案。我在网上找到了 3 个代码片段,只有一个在 Windows 7 中有效,但在 Windows Server 2008 SP2 中都失败了。我需要它至少在 Windows Server 2008 SP2 中工作。这是我发现的:


    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Drawing;
    using System.Drawing.Imaging;

    bool isCmyk;

    // WPF
    BitmapImage wpfImage = new BitmapImage(new Uri(imgFile));

    // false in Win7 & WinServer08, wpfImage.Format = Bgr32
    isCmyk = (wpfImage.Format == PixelFormats.Cmyk32);

    // Using GDI+
    Image img = Image.FromFile(file);

    // false in Win7 & WinServer08
    isCmyk = ((((ImageFlags)img.Flags) & ImageFlags.ColorSpaceCmyk) == 
        ImageFlags.ColorSpaceCmyk); 

    // true in Win7, false in WinServer08 (img.PixelFormat = Format24bppRgb) 
    isCmyk = ((int)img.PixelFormat) == 8207; 
4

3 回答 3

5

我不会从 BitmapImage 作为您加载数据的方式开始。事实上,我根本不会使用它。相反,我会使用BitmapDecoder::Create并传入BitmapCreateOptions.PreservePixelFormat. 然后你可以访问BitmapFrame你感兴趣的并检查它Format现在应该产生 CMYK 的属性。

然后,如果您确实需要显示图像,您可以将BitmapFrame也是BitmapSource子类的分配给Image::Source

于 2010-12-02T02:58:16.987 回答
5

我的测试结果和你的有点不同。

  • Windows 7的:
    • ImageFlags:ColorSpaceRgb
    • 像素格式:PixelFormat32bppCMYK (8207)
  • Windows 服务器 2008 R2:
    • ImageFlags:ColorSpaceRgb
    • 像素格式:PixelFormat32bppCMYK (8207)
  • 视窗服务器 2008:
    • ImageFlags:ColorSpaceYcck
    • 像素格式:Format24bppRgb

以下代码应该可以工作:

    public static bool IsCmyk(this Image image)
    {
        var flags = (ImageFlags)image.Flags;
        if (flags.HasFlag(ImageFlags.ColorSpaceCmyk) || flags.HasFlag(ImageFlags.ColorSpaceYcck))
        {
            return true;
        }

        const int PixelFormat32bppCMYK = (15 | (32 << 8));
        return (int)image.PixelFormat == PixelFormat32bppCMYK;
    }
于 2012-03-28T01:32:01.863 回答
0

我遇到了同样的问题,如果您使用 .net 2.0,那么 BitmapDecoder 将无法正常工作..您要做的是读取文件,然后简单检查一下文件中的字节是什么..如何识别 CMYK 图像在 ASP.NET 中使用 C# 希望这对某人有所帮助。

干杯 - 杰里米

于 2012-02-28T18:07:53.393 回答