gpt4 book ai didi

tiff - 有什么CMYK图形库吗?

转载 作者:行者123 更新时间:2023-12-04 01:54:35 25 4
gpt4 key购买 nike

我正在寻找支持 CMYK(JPG 或 TIF)的图形库。我必须读取一个大图像文件和一个小图像文件,然后先写第二个。输出也必须是 CMYK(没有任何 CMYK->RGB 转换)。有没有? (C#/C++/Java 或其他)

最佳答案

(免责声明,我在 Atalasoft 工作) Atalasoft dotImage将以 CMYK 格式读取和写入图像,并在 CMYK 空间中执行叠加操作。

执行此操作所需的代码是:

public void OverlayCMYKOnCMYK(Stream bottomStm, Stream topStm, Point location, Steam outStm)
{
using (AtalaImage bottom = new AtalaImage(bottomStm, null), top = new AtalaImage(topStm, null)) {
// might want to check that both bottom and top have the same PixelFormat
// OverlayCommand will silently do conversions if they don't match.
OverlayCommand overlay = new OverlayCommand(top, location);
overlay.Apply(bottom);
bottom.Save(outStm, new TiffEncoder(), null);
}
}

关于tiff - 有什么CMYK图形库吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3866579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com