0

这是我的代码:

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
4

1 回答 1

1

您需要重建 imagemagick 并支持正确的库。在这种情况下,您必须使用 LCMS 支持进行重建。

来源

于 2012-05-09T05:26:51.530 回答