Home
last modified time | relevance | path

Searched refs:taglen (Results 1 – 1 of 1) sorted by relevance

/libtiff-4.0.7/contrib/iptcutil/
H A Diptcutil.c207 taglen; in formatIPTC() local
273 taglen = (((long) buffer[ 0 ]) << 24) | in formatIPTC()
283 taglen = x << 8; in formatIPTC()
287 taglen |= (long) x; in formatIPTC()
290 if ((taglen <= 0) || (taglen > 1048576)) in formatIPTC()
292 printf("Inappropriate IPTC tag length %ld\n",taglen); in formatIPTC()
296 str = (char *) malloc((unsigned int) (taglen+1)); in formatIPTC()
302 for (tagindx=0; tagindx<taglen; tagindx++) in formatIPTC()
312 str[ taglen ] = 0; in formatIPTC()
319 formatString( ofile, str, taglen ); in formatIPTC()