这是我的代码:
Blob rgbBlob;
ifstream LoadFile;
Image profile_test("sRGB.icc");
profile_test.write(&rgbBlob);
jpg_src.profile("ICC",rgbBlob);
我正在尝试加载ICC文件并调整大小,但我做不到。相反,我收到此错误:
terminate called after throwing an instance of 'Magick::WarningMissingDelegate'
what(): Magick: DelegateLibrarySupportNotBuiltIn `5orig.jpg' (LCMS) @ warning
/profile.c/ProfileImage/5743
1 [sig] scale_image 2052 open_stackdumpfile: Dumping stack trace to scale_
image.exe.stackdump
最佳答案
您需要在支持正确的库的情况下重建imagemagick。在这种情况下,必须使用LCMS支持进行重建。
(source)
关于c++ - 使用Magick++加载ICC配置文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10509921/