• Home
  • Raw
  • Download

Lines Matching refs:emsg

76 TIFFRGBAImageOK(TIFF* tif, char emsg[1024])  in TIFFRGBAImageOK()
83 sprintf(emsg, "Sorry, requested compression method is not configured"); in TIFFRGBAImageOK()
94 sprintf(emsg, "Sorry, can not handle images with %d-bit samples", in TIFFRGBAImageOK()
108 sprintf(emsg, "Missing needed %s tag", photoTag); in TIFFRGBAImageOK()
119 sprintf(emsg, in TIFFRGBAImageOK()
143 sprintf(emsg, "Sorry, can not handle RGB image with %s=%d", in TIFFRGBAImageOK()
153 sprintf(emsg, in TIFFRGBAImageOK()
159 sprintf(emsg, in TIFFRGBAImageOK()
168 sprintf(emsg, "Sorry, LogL data must have %s=%d", in TIFFRGBAImageOK()
176 sprintf(emsg, "Sorry, LogLuv data must have %s=%d or %d", in TIFFRGBAImageOK()
181 sprintf(emsg, "Sorry, can not handle LogLuv images with %s=%d", in TIFFRGBAImageOK()
187 sprintf(emsg, in TIFFRGBAImageOK()
196 sprintf(emsg, in TIFFRGBAImageOK()
204 sprintf(emsg, "Sorry, can not handle image with %s=%d", in TIFFRGBAImageOK()
249 TIFFRGBAImageBegin(TIFFRGBAImage* img, TIFF* tif, int stop, char emsg[1024]) in TIFFRGBAImageBegin()
278 sprintf(emsg, "Sorry, can not handle images with %d-bit samples", in TIFFRGBAImageBegin()
328 sprintf(emsg, "Missing needed %s tag", photoTag); in TIFFRGBAImageBegin()
336 sprintf(emsg, "Missing required \"Colormap\" tag"); in TIFFRGBAImageBegin()
346 sprintf(emsg, "Out of memory for colormap copy"); in TIFFRGBAImageBegin()
360 sprintf(emsg, in TIFFRGBAImageBegin()
397 sprintf(emsg, "Sorry, can not handle RGB image with %s=%d", in TIFFRGBAImageBegin()
407 sprintf(emsg, "Sorry, can not handle separated image with %s=%d", in TIFFRGBAImageBegin()
412 sprintf(emsg, "Sorry, can not handle separated image with %s=%d", in TIFFRGBAImageBegin()
420 sprintf(emsg, "Sorry, LogL data must have %s=%d", in TIFFRGBAImageBegin()
430 sprintf(emsg, "Sorry, LogLuv data must have %s=%d or %d", in TIFFRGBAImageBegin()
435 sprintf(emsg, "Sorry, can not handle LogLuv images with %s=%d", in TIFFRGBAImageBegin()
446 sprintf(emsg, "Sorry, can not handle image with %s=%d", in TIFFRGBAImageBegin()
464 sprintf(emsg, "Sorry, can not handle image"); in TIFFRGBAImageBegin()
469 sprintf(emsg, "Sorry, can not handle image"); in TIFFRGBAImageBegin()
507 char emsg[1024] = ""; in TIFFReadRGBAImageOriented() local
511 if (TIFFRGBAImageOK(tif, emsg) && TIFFRGBAImageBegin(&img, tif, stop, emsg)) { in TIFFReadRGBAImageOriented()
518 TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg); in TIFFReadRGBAImageOriented()
2776 char emsg[1024] = ""; in TIFFReadRGBAStrip() local
2796 if (TIFFRGBAImageOK(tif, emsg) && TIFFRGBAImageBegin(&img, tif, 0, emsg)) { in TIFFReadRGBAStrip()
2810 TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg); in TIFFReadRGBAStrip()
2827 char emsg[1024] = ""; in TIFFReadRGBATile() local
2860 if (!TIFFRGBAImageOK(tif, emsg) in TIFFReadRGBATile()
2861 || !TIFFRGBAImageBegin(&img, tif, 0, emsg)) { in TIFFReadRGBATile()
2862 TIFFErrorExt(tif->tif_clientdata, TIFFFileName(tif), "%s", emsg); in TIFFReadRGBATile()