tif_extension.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:3k
源码类别:

打印编程

开发平台:

Visual C++

  1. /* $Header: /cvs/maptools/cvsroot/libtiff/libtiff/tif_extension.c,v 1.4 2004/10/02 13:29:41 dron Exp $ */
  2. /*
  3.  * Copyright (c) 1988-1997 Sam Leffler
  4.  * Copyright (c) 1991-1997 Silicon Graphics, Inc.
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and 
  7.  * its documentation for any purpose is hereby granted without fee, provided
  8.  * that (i) the above copyright notices and this permission notice appear in
  9.  * all copies of the software and related documentation, and (ii) the names of
  10.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  11.  * publicity relating to the software without the specific, prior written
  12.  * permission of Sam Leffler and Silicon Graphics.
  13.  * 
  14.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17.  * 
  18.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  19.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  20.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  22.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  23.  * OF THIS SOFTWARE.
  24.  */
  25. /*
  26.  * TIFF Library.
  27.  *
  28.  * Various routines support external extension of the tag set, and other
  29.  * application extension capabilities. 
  30.  */
  31. #include "tiffiop.h"
  32. int TIFFGetTagListCount( TIFF *tif )
  33. {
  34.     TIFFDirectory* td = &tif->tif_dir;
  35.     
  36.     return td->td_customValueCount;
  37. }
  38. ttag_t TIFFGetTagListEntry( TIFF *tif, int tag_index )
  39. {
  40.     TIFFDirectory* td = &tif->tif_dir;
  41.     if( tag_index < 0 || tag_index >= td->td_customValueCount )
  42.         return (ttag_t) -1;
  43.     else
  44.         return td->td_customValues[tag_index].info->field_tag;
  45. }
  46. /*
  47. ** This provides read/write access to the TIFFTagMethods within the TIFF
  48. ** structure to application code without giving access to the private
  49. ** TIFF structure.
  50. */
  51. TIFFTagMethods *TIFFAccessTagMethods( TIFF *tif )
  52. {
  53.     return &(tif->tif_tagmethods);
  54. }
  55. void *TIFFGetClientInfo( TIFF *tif, const char *name )
  56. {
  57.     TIFFClientInfoLink *link = tif->tif_clientinfo;
  58.     while( link != NULL && strcmp(link->name,name) != 0 )
  59.         link = link->next;
  60.     if( link != NULL )
  61.         return link->data;
  62.     else
  63.         return NULL;
  64. }
  65. void TIFFSetClientInfo( TIFF *tif, void *data, const char *name )
  66. {
  67.     TIFFClientInfoLink *link = tif->tif_clientinfo;
  68.     /*
  69.     ** Do we have an existing link with this name?  If so, just
  70.     ** set it.
  71.     */
  72.     while( link != NULL && strcmp(link->name,name) != 0 )
  73.         link = link->next;
  74.     if( link != NULL )
  75.     {
  76.         link->data = data;
  77.         return;
  78.     }
  79.     /*
  80.     ** Create a new link.
  81.     */
  82.     link = (TIFFClientInfoLink *) _TIFFmalloc(sizeof(TIFFClientInfoLink));
  83.     assert (link != NULL);
  84.     link->next = tif->tif_clientinfo;
  85.     link->name = (char *) _TIFFmalloc(strlen(name)+1);
  86.     assert (link->name != NULL);
  87.     strcpy(link->name, name);
  88.     link->data = data;
  89.     tif->tif_clientinfo = link;
  90. }