.NET TIFF file: RGB to CMYK conversion possible without a third party library?

前端 未结 2 1855
小蘑菇
小蘑菇 2021-01-07 03:22

Following up my previous question: if and how would it be possible to take RGB based TIFF files and convert them over to CMYK with standard .NET (3.5) functionality?

2条回答
  •  南笙
    南笙 (楼主)
    2021-01-07 04:11

    No, I don't think that's possible using standard GDI+ wrappers (System.Drawing). GDI+ only supports RGB. CMYK based images can be read by GDI+ (implicit conversion to RGB), but CMYK based images can't be written.

    You might want to try something like GraphicsMill, which supports CMYK.

提交回复
热议问题