• Home
  • Raw
  • Download

Lines Matching full:resolution

184 write_tiff_bw_header (FILE *fptr, int width, int height, int resolution)  in write_tiff_bw_header()  argument
199 if (resolution > 0) in write_tiff_bw_header()
235 if (resolution > 0) in write_tiff_bw_header()
237 /* x resolution */ in write_tiff_bw_header()
240 /* y resolution */ in write_tiff_bw_header()
244 if (resolution > 0) in write_tiff_bw_header()
246 /* resolution unit (dpi) */ in write_tiff_bw_header()
254 /* Write x/y resolution */ in write_tiff_bw_header()
255 if (resolution > 0) in write_tiff_bw_header()
257 write_i4 (fptr, resolution, motorola); in write_tiff_bw_header()
259 write_i4 (fptr, resolution, motorola); in write_tiff_bw_header()
268 int resolution, const char *icc_profile) in write_tiff_grey_header() argument
292 if (resolution > 0) in write_tiff_grey_header()
336 if (resolution > 0) in write_tiff_grey_header()
338 /* x resolution */ in write_tiff_grey_header()
341 /* y resolution */ in write_tiff_grey_header()
345 if (resolution > 0) in write_tiff_grey_header()
347 /* resolution unit (dpi) */ in write_tiff_grey_header()
370 /* Write x/y resolution */ in write_tiff_grey_header()
371 if (resolution > 0) in write_tiff_grey_header()
373 write_i4 (fptr, resolution, motorola); in write_tiff_grey_header()
375 write_i4 (fptr, resolution, motorola); in write_tiff_grey_header()
391 int resolution, const char *icc_profile) in write_tiff_color_header() argument
417 if (resolution > 0) in write_tiff_color_header()
466 if (resolution > 0) in write_tiff_color_header()
468 /* x resolution */ in write_tiff_color_header()
471 /* y resolution */ in write_tiff_color_header()
476 if (resolution > 0) in write_tiff_color_header()
478 /* resolution unit (dpi) */ in write_tiff_color_header()
517 /* Write x/y resolution */ in write_tiff_color_header()
518 if (resolution > 0) in write_tiff_color_header()
520 write_i4 (fptr, resolution, motorola); in write_tiff_color_header()
522 write_i4 (fptr, resolution, motorola); in write_tiff_color_header()
540 int resolution, const char *icc_profile, FILE *ofp) in sanei_write_tiff_header() argument
551 write_tiff_color_header (ofp, width, height, depth, resolution, icc_profile); in sanei_write_tiff_header()
556 write_tiff_bw_header (ofp, width, height, resolution); in sanei_write_tiff_header()
558 write_tiff_grey_header (ofp, width, height, depth, resolution, icc_profile); in sanei_write_tiff_header()