Home | History | Annotate | Download | only in coders

Lines Matching refs:rows_per_strip

1142     rows_per_strip,
1573 if (TIFFGetField(tiff,TIFFTAG_ROWSPERSTRIP,&rows_per_strip) == 1)
1580 (unsigned int) rows_per_strip);
1861 i=(ssize_t) MagickMin((ssize_t) rows_per_strip,(ssize_t)
3146 rows_per_strip;
3493 rows_per_strip=TIFFDefaultStripSize(tiff,0);
3496 rows_per_strip=(size_t) strtol(option,(char **) NULL,10);
3511 rows_per_strip+=(16-(rows_per_strip % 16));
3551 rows_per_strip=(uint32) image->rows;
3568 rows_per_strip=(uint32) image->rows;
3574 rows_per_strip=(uint32) image->rows;
3603 if (rows_per_strip < 1)
3604 rows_per_strip=1;
3605 if ((image->rows/rows_per_strip) >= (1UL << 15))
3606 rows_per_strip=(uint32) (image->rows >> 15);
3607 (void) TIFFSetField(tiff,TIFFTAG_ROWSPERSTRIP,rows_per_strip);