Lines Matching defs:emsg

72  * be handled.  If 0 is returned, emsg contains the reason
76 TIFFRGBAImageOK(TIFF* tif, char emsg[1024])
83 sprintf(emsg, "Sorry, requested compression method is not configured");
94 sprintf(emsg, "Sorry, can not handle images with %d-bit samples",
108 sprintf(emsg, "Missing needed %s tag", photoTag);
119 sprintf(emsg,
143 sprintf(emsg, "Sorry, can not handle RGB image with %s=%d",
153 sprintf(emsg,
159 sprintf(emsg,
168 sprintf(emsg, "Sorry, LogL data must have %s=%d",
176 sprintf(emsg, "Sorry, LogLuv data must have %s=%d or %d",
181 sprintf(emsg, "Sorry, can not handle LogLuv images with %s=%d",
189 sprintf(emsg, "Sorry, can not handle image with %s=%d",
234 TIFFRGBAImageBegin(TIFFRGBAImage* img, TIFF* tif, int stop, char emsg[1024])
263 sprintf(emsg, "Sorry, can not handle images with %d-bit samples",
313 sprintf(emsg, "Missing needed %s tag", photoTag);
321 sprintf(emsg, "Missing required \"Colormap\" tag");
331 sprintf(emsg, "Out of memory for colormap copy");
345 sprintf(emsg,
382 sprintf(emsg, "Sorry, can not handle RGB image with %s=%d",
392 sprintf(emsg, "Sorry, can not handle separated image with %s=%d",
397 sprintf(emsg, "Sorry, can not handle separated image with %s=%d",
405 sprintf(emsg, "Sorry, LogL data must have %s=%d",
415 sprintf(emsg, "Sorry, LogLuv data must have %s=%d or %d",
420 sprintf(emsg, "Sorry, can not handle LogLuv images with %s=%d",
431 sprintf(emsg, "Sorry, can not handle image with %s=%d",
449 sprintf(emsg, "Sorry, can not handle image");
454 sprintf(emsg, "Sorry, can not handle image");
492 char emsg[1024] = "";
496 if (TIFFRGBAImageOK(tif, emsg) && TIFFRGBAImageBegin(&img, tif, stop, emsg)) {
503 TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg);
2715 char emsg[1024] = "";
2735 if (TIFFRGBAImageOK(tif, emsg) && TIFFRGBAImageBegin(&img, tif, 0, emsg)) {
2749 TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg);
2766 char emsg[1024] = "";
2799 if (!TIFFRGBAImageOK(tif, emsg)
2800 || !TIFFRGBAImageBegin(&img, tif, 0, emsg)) {
2801 TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg);