我想将输入的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重建了最新的libgraphicsmagick.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/