Lines Matching defs:profile
1 /* Load an ICC profile for embedding in an output file
29 void *profile = NULL;
36 fprintf(stderr, "Could not open ICC profile %s\n", path);
46 fprintf(stderr, "Ignoring ICC profile because file %s is shorter than the profile\n", path);
50 profile = malloc(stated_size);
52 if (fread(profile, stated_size, 1, fd) != 1)
54 fprintf(stderr, "Error reading ICC profile %s\n", path);
55 free(profile);
61 return profile;