home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / graphics / libtiff_1 / c / tif_print < prev    next >
Text File  |  1995-10-12  |  15KB  |  492 lines

  1. /* $Header: /usr/people/sam/tiff/libtiff/RCS/tif_print.c,v 1.65 1995/10/10 00:12:55 sam Exp $ */
  2.  
  3. /*
  4.  * Copyright (c) 1988-1995 Sam Leffler
  5.  * Copyright (c) 1991-1995 Silicon Graphics, Inc.
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26.  
  27. /*
  28.  * TIFF Library.
  29.  *
  30.  * Directory Printing Support
  31.  */
  32. #include "tiffiop.h"
  33. #include <stdio.h>
  34.  
  35. #include <ctype.h>
  36.  
  37. static const char *photoNames[] = {
  38.     "min-is-white",                /* PHOTOMETRIC_MINISWHITE */
  39.     "min-is-black",                /* PHOTOMETRIC_MINISBLACK */
  40.     "RGB color",                /* PHOTOMETRIC_RGB */
  41.     "palette color (RGB from colormap)",    /* PHOTOMETRIC_PALETTE */
  42.     "transparency mask",            /* PHOTOMETRIC_MASK */
  43.     "separated",                /* PHOTOMETRIC_SEPARATED */
  44.     "YCbCr",                    /* PHOTOMETRIC_YCBCR */
  45.     "7 (0x7)",
  46.     "CIE L*a*b*",                /* PHOTOMETRIC_CIELAB */
  47. };
  48. #define    NPHOTONAMES    (sizeof (photoNames) / sizeof (photoNames[0]))
  49.  
  50. static const char *orientNames[] = {
  51.     "0 (0x0)",
  52.     "row 0 top, col 0 lhs",            /* ORIENTATION_TOPLEFT */
  53.     "row 0 top, col 0 rhs",            /* ORIENTATION_TOPRIGHT */
  54.     "row 0 bottom, col 0 rhs",            /* ORIENTATION_BOTRIGHT */
  55.     "row 0 bottom, col 0 lhs",            /* ORIENTATION_BOTLEFT */
  56.     "row 0 lhs, col 0 top",            /* ORIENTATION_LEFTTOP */
  57.     "row 0 rhs, col 0 top",            /* ORIENTATION_RIGHTTOP */
  58.     "row 0 rhs, col 0 bottom",            /* ORIENTATION_RIGHTBOT */
  59.     "row 0 lhs, col 0 bottom",            /* ORIENTATION_LEFTBOT */
  60. };
  61. #define    NORIENTNAMES    (sizeof (orientNames) / sizeof (orientNames[0]))
  62.  
  63. /*
  64.  * Print the contents of the current directory
  65.  * to the specified stdio file stream.
  66.  */
  67. void
  68. TIFFPrintDirectory(TIFF* tif, FILE* fd, long flags)
  69. {
  70.     register TIFFDirectory *td;
  71.     char *sep;
  72.     uint16 i;
  73.     long l, n;
  74.  
  75.     fprintf(fd, "TIFF Directory at offset 0x%lx\n", (long) tif->tif_diroff);
  76.     td = &tif->tif_dir;
  77.     if (TIFFFieldSet(tif,FIELD_SUBFILETYPE)) {
  78.         fprintf(fd, "  Subfile Type:");
  79.         sep = " ";
  80.         if (td->td_subfiletype & FILETYPE_REDUCEDIMAGE) {
  81.             fprintf(fd, "%sreduced-resolution image", sep);
  82.             sep = "/";
  83.         }
  84.         if (td->td_subfiletype & FILETYPE_PAGE) {
  85.             fprintf(fd, "%smulti-page document", sep);
  86.             sep = "/";
  87.         }
  88.         if (td->td_subfiletype & FILETYPE_MASK)
  89.             fprintf(fd, "%stransparency mask", sep);
  90.         fprintf(fd, " (%lu = 0x%lx)\n",
  91.             (long) td->td_subfiletype, (long) td->td_subfiletype);
  92.     }
  93.     if (TIFFFieldSet(tif,FIELD_IMAGEDIMENSIONS)) {
  94.         fprintf(fd, "  Image Width: %lu Image Length: %lu",
  95.             (u_long) td->td_imagewidth, (u_long) td->td_imagelength);
  96.         if (TIFFFieldSet(tif,FIELD_IMAGEDEPTH))
  97.             fprintf(fd, " Image Depth: %lu",
  98.                 (u_long) td->td_imagedepth);
  99.         fprintf(fd, "\n");
  100.     }
  101.     if (TIFFFieldSet(tif,FIELD_TILEDIMENSIONS)) {
  102.         fprintf(fd, "  Tile Width: %lu Tile Length: %lu",
  103.             (u_long) td->td_tilewidth, (u_long) td->td_tilelength);
  104.         if (TIFFFieldSet(tif,FIELD_TILEDEPTH))
  105.             fprintf(fd, " Tile Depth: %lu",
  106.                 (u_long) td->td_tiledepth);
  107.         fprintf(fd, "\n");
  108.     }
  109.     if (TIFFFieldSet(tif,FIELD_RESOLUTION)) {
  110.         fprintf(fd, "  Resolution: %g, %g",
  111.             td->td_xresolution, td->td_yresolution);
  112.         if (TIFFFieldSet(tif,FIELD_RESOLUTIONUNIT)) {
  113.             switch (td->td_resolutionunit) {
  114.             case RESUNIT_NONE:
  115.                 fprintf(fd, " (unitless)");
  116.                 break;
  117.             case RESUNIT_INCH:
  118.                 fprintf(fd, " pixels/inch");
  119.                 break;
  120.             case RESUNIT_CENTIMETER:
  121.                 fprintf(fd, " pixels/cm");
  122.                 break;
  123.             default:
  124.                 fprintf(fd, " (unit %u = 0x%x)",
  125.                     td->td_resolutionunit,
  126.                     td->td_resolutionunit);
  127.                 break;
  128.             }
  129.         }
  130.         fprintf(fd, "\n");
  131.     }
  132.     if (TIFFFieldSet(tif,FIELD_POSITION))
  133.         fprintf(fd, "  Position: %g, %g\n",
  134.             td->td_xposition, td->td_yposition);
  135.     if (TIFFFieldSet(tif,FIELD_BITSPERSAMPLE))
  136.         fprintf(fd, "  Bits/Sample: %u\n", td->td_bitspersample);
  137.     if (TIFFFieldSet(tif,FIELD_SAMPLEFORMAT)) {
  138.         fprintf(fd, "  Sample Format: ");
  139.         switch (td->td_sampleformat) {
  140.         case SAMPLEFORMAT_VOID:
  141.             fprintf(fd, "void\n");
  142.             break;
  143.         case SAMPLEFORMAT_INT:
  144.             fprintf(fd, "signed integer\n");
  145.             break;
  146.         case SAMPLEFORMAT_UINT:
  147.             fprintf(fd, "unsigned integer\n");
  148.             break;
  149.         case SAMPLEFORMAT_IEEEFP:
  150.             fprintf(fd, "IEEE floating point\n");
  151.             break;
  152.         default:
  153.             fprintf(fd, "%u (0x%x)\n",
  154.                 td->td_sampleformat, td->td_sampleformat);
  155.             break;
  156.         }
  157.     }
  158.     if (TIFFFieldSet(tif,FIELD_COMPRESSION)) {
  159.         fprintf(fd, "  Compression Scheme: ");
  160.         switch (td->td_compression) {
  161.         case COMPRESSION_NONE:
  162.             fprintf(fd, "none\n");
  163.             break;
  164.         case COMPRESSION_CCITTRLE:
  165.             fprintf(fd, "CCITT modified Huffman encoding\n");
  166.             break;
  167.         case COMPRESSION_CCITTFAX3:
  168.             fprintf(fd, "CCITT Group 3 facsimile encoding\n");
  169.             break;
  170.         case COMPRESSION_CCITTFAX4:
  171.             fprintf(fd, "CCITT Group 4 facsimile encoding\n");
  172.             break;
  173.         case COMPRESSION_CCITTRLEW:
  174.             fprintf(fd, "CCITT modified Huffman encoding %s\n",
  175.                 "w/ word alignment");
  176.             break;
  177.         case COMPRESSION_PACKBITS:
  178.             fprintf(fd, "Macintosh PackBits encoding\n");
  179.             break;
  180.         case COMPRESSION_THUNDERSCAN:
  181.             fprintf(fd, "ThunderScan 4-bit encoding\n");
  182.             break;
  183.         case COMPRESSION_LZW:
  184.             fprintf(fd, "Lempel-Ziv & Welch encoding\n");
  185.             break;
  186.         case COMPRESSION_NEXT:
  187.             fprintf(fd, "NeXT 2-bit encoding\n");
  188.             break;
  189.         case COMPRESSION_OJPEG:
  190.             fprintf(fd, "Old-style JPEG encoding\n");
  191.             break;
  192.         case COMPRESSION_JPEG:
  193.             fprintf(fd, "JPEG encoding\n");
  194.             break;
  195.         case COMPRESSION_JBIG:
  196.             fprintf(fd, "JBIG encoding\n");
  197.             break;
  198.         case COMPRESSION_DEFLATE:
  199.             fprintf(fd, "Deflate encoding (experimental)\n");
  200.             break;
  201.         default:
  202.             fprintf(fd, "%u (0x%x)\n",
  203.                 td->td_compression, td->td_compression);
  204.             break;
  205.         }
  206.     }
  207.     if (TIFFFieldSet(tif,FIELD_PHOTOMETRIC)) {
  208.         fprintf(fd, "  Photometric Interpretation: ");
  209.         if (td->td_photometric < NPHOTONAMES)
  210.             fprintf(fd, "%s\n", photoNames[td->td_photometric]);
  211.         else
  212.             fprintf(fd, "%u (0x%x)\n",
  213.                 td->td_photometric, td->td_photometric);
  214.     }
  215.     if (TIFFFieldSet(tif,FIELD_EXTRASAMPLES) && td->td_extrasamples) {
  216.         fprintf(fd, "  Extra Samples: %u<", td->td_extrasamples);
  217.         sep = "";
  218.         for (i = 0; i < td->td_extrasamples; i++) {
  219.             switch (td->td_sampleinfo[i]) {
  220.             case EXTRASAMPLE_UNSPECIFIED:
  221.                 fprintf(fd, "%sunspecified", sep);
  222.                 break;
  223.             case EXTRASAMPLE_ASSOCALPHA:
  224.                 fprintf(fd, "%sassoc-alpha", sep);
  225.                 break;
  226.             case EXTRASAMPLE_UNASSALPHA:
  227.                 fprintf(fd, "%sunassoc-alpha", sep);
  228.                 break;
  229.             default:
  230.                 fprintf(fd, "%s%u (0x%x)", sep,
  231.                     td->td_sampleinfo[i], td->td_sampleinfo[i]);
  232.                 break;
  233.             }
  234.             sep = ", ";
  235.         }
  236.         fprintf(fd, ">\n");
  237.     }
  238. #ifdef CMYK_SUPPORT
  239.     if (TIFFFieldSet(tif,FIELD_INKSET)) {
  240.         fprintf(fd, "  Ink Set: ");
  241.         switch (td->td_inkset) {
  242.         case INKSET_CMYK:
  243.             fprintf(fd, "CMYK\n");
  244.             break;
  245.         default:
  246.             fprintf(fd, "%u (0x%x)\n",
  247.                 td->td_inkset, td->td_inkset);
  248.             break;
  249.         }
  250.     }
  251.     if (TIFFFieldSet(tif,FIELD_INKNAMES)) {
  252.         char* cp;
  253.         fprintf(fd, "  Ink Names: ");
  254.         i = td->td_samplesperpixel;
  255.         sep = "";
  256.         for (cp = td->td_inknames; i > 0; cp = strchr(cp, '\0')) {
  257.             fprintf(fd, "%s", sep);
  258.             _TIFFprintAscii(fd, cp);
  259.             sep = ", ";
  260.         }
  261.     }
  262.     if (TIFFFieldSet(tif,FIELD_DOTRANGE))
  263.         fprintf(fd, "  Dot Range: %u-%u\n",
  264.             td->td_dotrange[0], td->td_dotrange[1]);
  265.     if (TIFFFieldSet(tif,FIELD_TARGETPRINTER))
  266.         _TIFFprintAsciiTag(fd, "Target Printer", td->td_targetprinter);
  267. #endif
  268.     if (TIFFFieldSet(tif,FIELD_THRESHHOLDING)) {
  269.         fprintf(fd, "  Thresholding: ");
  270.         switch (td->td_threshholding) {
  271.         case THRESHHOLD_BILEVEL:
  272.             fprintf(fd, "bilevel art scan\n");
  273.             break;
  274.         case THRESHHOLD_HALFTONE:
  275.             fprintf(fd, "halftone or dithered scan\n");
  276.             break;
  277.         case THRESHHOLD_ERRORDIFFUSE:
  278.             fprintf(fd, "error diffused\n");
  279.             break;
  280.         default:
  281.             fprintf(fd, "%u (0x%x)\n",
  282.                 td->td_threshholding, td->td_threshholding);
  283.             break;
  284.         }
  285.     }
  286.     if (TIFFFieldSet(tif,FIELD_FILLORDER)) {
  287.         fprintf(fd, "  FillOrder: ");
  288.         switch (td->td_fillorder) {
  289.         case FILLORDER_MSB2LSB:
  290.             fprintf(fd, "msb-to-lsb\n");
  291.             break;
  292.         case FILLORDER_LSB2MSB:
  293.             fprintf(fd, "lsb-to-msb\n");
  294.             break;
  295.         default:
  296.             fprintf(fd, "%u (0x%x)\n",
  297.                 td->td_fillorder, td->td_fillorder);
  298.             break;
  299.         }
  300.     }
  301. #ifdef YCBCR_SUPPORT
  302.     if (TIFFFieldSet(tif,FIELD_YCBCRSUBSAMPLING))
  303.         fprintf(fd, "  YCbCr Subsampling: %u, %u\n",
  304.             td->td_ycbcrsubsampling[0], td->td_ycbcrsubsampling[1]);
  305.     if (TIFFFieldSet(tif,FIELD_YCBCRPOSITIONING)) {
  306.         fprintf(fd, "  YCbCr Positioning: ");
  307.         switch (td->td_ycbcrpositioning) {
  308.         case YCBCRPOSITION_CENTERED:
  309.             fprintf(fd, "centered\n");
  310.             break;
  311.         case YCBCRPOSITION_COSITED:
  312.             fprintf(fd, "cosited\n");
  313.             break;
  314.         default:
  315.             fprintf(fd, "%u (0x%x)\n",
  316.                 td->td_ycbcrpositioning, td->td_ycbcrpositioning);
  317.             break;
  318.         }
  319.     }
  320.     if (TIFFFieldSet(tif,FIELD_YCBCRCOEFFICIENTS))
  321.         fprintf(fd, "  YCbCr Coefficients: %g, %g, %g\n",
  322.             td->td_ycbcrcoeffs[0],
  323.             td->td_ycbcrcoeffs[1],
  324.             td->td_ycbcrcoeffs[2]);
  325. #endif
  326.     if (TIFFFieldSet(tif,FIELD_HALFTONEHINTS))
  327.         fprintf(fd, "  Halftone Hints: light %u dark %u\n",
  328.             td->td_halftonehints[0], td->td_halftonehints[1]);
  329.     if (TIFFFieldSet(tif,FIELD_ARTIST))
  330.         _TIFFprintAsciiTag(fd, "Artist", td->td_artist);
  331.     if (TIFFFieldSet(tif,FIELD_DATETIME))
  332.         _TIFFprintAsciiTag(fd, "Date & Time", td->td_datetime);
  333.     if (TIFFFieldSet(tif,FIELD_HOSTCOMPUTER))
  334.         _TIFFprintAsciiTag(fd, "Host Computer", td->td_hostcomputer);
  335.     if (TIFFFieldSet(tif,FIELD_SOFTWARE))
  336.         _TIFFprintAsciiTag(fd, "Software", td->td_software);
  337.     if (TIFFFieldSet(tif,FIELD_DOCUMENTNAME))
  338.         _TIFFprintAsciiTag(fd, "Document Name", td->td_documentname);
  339.     if (TIFFFieldSet(tif,FIELD_IMAGEDESCRIPTION))
  340.         _TIFFprintAsciiTag(fd, "Image Description", td->td_imagedescription);
  341.     if (TIFFFieldSet(tif,FIELD_MAKE))
  342.         _TIFFprintAsciiTag(fd, "Make", td->td_make);
  343.     if (TIFFFieldSet(tif,FIELD_MODEL))
  344.         _TIFFprintAsciiTag(fd, "Model", td->td_model);
  345.     if (TIFFFieldSet(tif,FIELD_ORIENTATION)) {
  346.         fprintf(fd, "  Orientation: ");
  347.         if (td->td_orientation < NORIENTNAMES)
  348.             fprintf(fd, "%s\n", orientNames[td->td_orientation]);
  349.         else
  350.             fprintf(fd, "%u (0x%x)\n",
  351.                 td->td_orientation, td->td_orientation);
  352.     }
  353.     if (TIFFFieldSet(tif,FIELD_SAMPLESPERPIXEL))
  354.         fprintf(fd, "  Samples/Pixel: %u\n", td->td_samplesperpixel);
  355.     if (TIFFFieldSet(tif,FIELD_ROWSPERSTRIP)) {
  356.         fprintf(fd, "  Rows/Strip: ");
  357.         if (td->td_rowsperstrip == (uint32) -1)
  358.             fprintf(fd, "(infinite)\n");
  359.         else
  360.             fprintf(fd, "%lu\n", (u_long) td->td_rowsperstrip);
  361.     }
  362.     if (TIFFFieldSet(tif,FIELD_MINSAMPLEVALUE))
  363.         fprintf(fd, "  Min Sample Value: %u\n", td->td_minsamplevalue);
  364.     if (TIFFFieldSet(tif,FIELD_MAXSAMPLEVALUE))
  365.         fprintf(fd, "  Max Sample Value: %u\n", td->td_maxsamplevalue);
  366.     if (TIFFFieldSet(tif,FIELD_SMINSAMPLEVALUE))
  367.         fprintf(fd, "  SMin Sample Value: %g\n",
  368.             td->td_sminsamplevalue);
  369.     if (TIFFFieldSet(tif,FIELD_SMAXSAMPLEVALUE))
  370.         fprintf(fd, "  SMax Sample Value: %g\n",
  371.             td->td_smaxsamplevalue);
  372.     if (TIFFFieldSet(tif,FIELD_PLANARCONFIG)) {
  373.         fprintf(fd, "  Planar Configuration: ");
  374.         switch (td->td_planarconfig) {
  375.         case PLANARCONFIG_CONTIG:
  376.             fprintf(fd, "single image plane\n");
  377.             break;
  378.         case PLANARCONFIG_SEPARATE:
  379.             fprintf(fd, "separate image planes\n");
  380.             break;
  381.         default:
  382.             fprintf(fd, "%u (0x%x)\n",
  383.                 td->td_planarconfig, td->td_planarconfig);
  384.             break;
  385.         }
  386.     }
  387.     if (TIFFFieldSet(tif,FIELD_PAGENAME))
  388.         _TIFFprintAsciiTag(fd, "Page Name", td->td_pagename);
  389.     if (TIFFFieldSet(tif,FIELD_PAGENUMBER))
  390.         fprintf(fd, "  Page Number: %u-%u\n",
  391.             td->td_pagenumber[0], td->td_pagenumber[1]);
  392.     if (TIFFFieldSet(tif,FIELD_COLORMAP)) {
  393.         fprintf(fd, "  Color Map: ");
  394.         if (flags & TIFFPRINT_COLORMAP) {
  395.             fprintf(fd, "\n");
  396.             n = 1L<<td->td_bitspersample;
  397.             for (l = 0; l < n; l++)
  398.                 fprintf(fd, "   %5lu: %5u %5u %5u\n",
  399.                     l,
  400.                     td->td_colormap[0][l],
  401.                     td->td_colormap[1][l],
  402.                     td->td_colormap[2][l]);
  403.         } else
  404.             fprintf(fd, "(present)\n");
  405.     }
  406. #ifdef COLORIMETRY_SUPPORT
  407.     if (TIFFFieldSet(tif,FIELD_WHITEPOINT))
  408.         fprintf(fd, "  White Point: %g-%g\n",
  409.             td->td_whitepoint[0], td->td_whitepoint[1]);
  410.     if (TIFFFieldSet(tif,FIELD_PRIMARYCHROMAS))
  411.         fprintf(fd, "  Primary Chromaticities: %g,%g %g,%g %g,%g\n",
  412.             td->td_primarychromas[0], td->td_primarychromas[1],
  413.             td->td_primarychromas[2], td->td_primarychromas[3],
  414.             td->td_primarychromas[4], td->td_primarychromas[5]);
  415.     if (TIFFFieldSet(tif,FIELD_REFBLACKWHITE)) {
  416.         fprintf(fd, "  Reference Black/White:\n");
  417.         for (i = 0; i < td->td_samplesperpixel; i++)
  418.             fprintf(fd, "    %2d: %5g %5g\n",
  419.                 i,
  420.                 td->td_refblackwhite[2*i+0],
  421.                 td->td_refblackwhite[2*i+1]);
  422.     }
  423.     if (TIFFFieldSet(tif,FIELD_TRANSFERFUNCTION)) {
  424.         fprintf(fd, "  Transfer Function: ");
  425.         if (flags & TIFFPRINT_CURVES) {
  426.             fprintf(fd, "\n");
  427.             n = 1L<<td->td_bitspersample;
  428.             for (l = 0; l < n; l++) {
  429.                 fprintf(fd, "    %2lu: %5u",
  430.                     l, td->td_transferfunction[0][l]);
  431.                 for (i = 1; i < td->td_samplesperpixel; i++)
  432.                     fprintf(fd, " %5u",
  433.                         td->td_transferfunction[i][l]);
  434.                 fputc('\n', fd);
  435.             }
  436.         } else
  437.             fprintf(fd, "(present)\n");
  438.     }
  439. #endif
  440. #if SUBIFD_SUPPORT
  441.     if (TIFFFieldSet(tif, FIELD_SUBIFD)) {
  442.         fprintf(fd, "  SubIFD Offsets:");
  443.         for (i = 0; i < td->td_nsubifd; i++)
  444.             fprintf(fd, " %5lu", (long) td->td_subifd[i]);
  445.         fputc('\n', fd);
  446.     }
  447. #endif
  448.     if (tif->tif_printdir)
  449.         (*tif->tif_printdir)(tif, fd, flags);
  450.     if ((flags & TIFFPRINT_STRIPS) &&
  451.         TIFFFieldSet(tif,FIELD_STRIPOFFSETS)) {
  452.         tstrip_t s;
  453.  
  454.         fprintf(fd, "  %lu %s:\n",
  455.             (long) td->td_nstrips,
  456.             isTiled(tif) ? "Tiles" : "Strips");
  457.         for (s = 0; s < td->td_nstrips; s++)
  458.             fprintf(fd, "    %3lu: [%8lu, %8lu]\n",
  459.                 (u_long) s,
  460.                 (u_long) td->td_stripoffset[s],
  461.                 (u_long) td->td_stripbytecount[s]);
  462.     }
  463. }
  464.  
  465. void
  466. _TIFFprintAscii(FILE* fd, const char* cp)
  467. {
  468.     for (; *cp != '\0'; cp++) {
  469.         const char* tp;
  470.  
  471.         if (isprint(*cp)) {
  472.             fputc(*cp, fd);
  473.             continue;
  474.         }
  475.         for (tp = "\tt\bb\rr\nn\vv"; *tp; tp++)
  476.             if (*tp++ == *cp)
  477.                 break;
  478.         if (*tp)
  479.             fprintf(fd, "\\%c", *tp);
  480.         else
  481.             fprintf(fd, "\\%03o", *cp & 0xff);
  482.     }
  483. }
  484.  
  485. void
  486. _TIFFprintAsciiTag(FILE* fd, const char* name, const char* value)
  487. {
  488.     fprintf(fd, "  %s: \"", name);
  489.     _TIFFprintAscii(fd, value);
  490.     fprintf(fd, "\"\n");
  491. }
  492.