Lines Matching defs:of
9 * example of a program that extracts information from the header of a PNG file
13 * information in the section of the file that preceeds the image data.
18 * To use supply a list of PNG files containing iCCP chunks, the chunks will be
119 FILE *of;
124 of = fopen(output, "wb");
125 if (of != NULL)
127 if (fwrite(profile, proflen, 1, of) == 1 &&
128 fflush(of) == 0 &&
129 fclose(of) == 0)