gpt4 book ai didi

c - 如何通过GraphicsMagick C API实现 "gm convert -profile"?

转载 作者:行者123 更新时间:2023-11-30 17:07:51 25 4
gpt4 key购买 nike

我想将输入 JPEG 图像转换为 sRGB 颜色配置文件。

这个 cli 变体运行良好:

gm convert src.jpg -profile sRGB.icc -strip dst.jpg

但是这个变体不起作用:

FILE *f = fopen("./sRGB.icc", "rb");
fseek(f, 0, SEEK_END);
long fsize = ftell(f);
fseek(f, 0, SEEK_SET);
unsigned char *profile = malloc(fsize);
n = fread(string, 1, fsize, f);
fclose(f);

res = ProfileImage(image, "ICM", profile, fsize, MagickFalse); // also try "ICC"
// got MagickFail

我该怎么做?

最佳答案

我用 liblcms.a 重建了最新的 libgraphicsmagicks.a,一切都很好。

unsigned char sRGB_icc[] = {...}; // save sRGB.icc in source code
unsigned int sRGB_icc_len = ...;

ProfileImage(image, "ICM", sRGB_icc, sRGB_icc_len, MagickTrue); // "-profile"
ProfileImage(image, "*", NULL, 0, MagickFalse); // "-strip"

关于c - 如何通过GraphicsMagick C API实现 "gm convert -profile"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33964783/

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