summaryrefslogtreecommitdiff
path: root/gs/tiff/contrib/addtiffo/addtiffo.c
diff options
context:
space:
mode:
authorLars Uebernickel <larsuebernickel@gmx.de>2009-11-11 15:50:28 +0000
committerLars Uebernickel <larsuebernickel@gmx.de>2009-11-11 15:50:28 +0000
commit539a4c2cb892ef2826656d158d82fe0ea76647e6 (patch)
tree7db47de9ce9ca44f941755b93a6e8199207929b1 /gs/tiff/contrib/addtiffo/addtiffo.c
parent3f5f514aaccb0eb1f89c18f57e2023920fed3691 (diff)
downloadghostpdl-539a4c2cb892ef2826656d158d82fe0ea76647e6.tar.gz
Changed all tiff devices to use libtiff.
Affected Devices are tiffgray, tiff12nc, tiff24nc, tiff32nc, tiffsep, tiffsep1, tiffcrle, tiffg3, tiffg32d, tiffg4, tifflzw, and tiffpack. Also, two new devices: tiff48nc and tiff64nc (16 bits per component rgb and cmyk respectively) have been added. Libtiff 3.9.2 is included in the source tree as tiff/. It is possible to link to the system's libtiff by passing --with-system-libtiff to configure. Passing --without-system-libtiff will force the build to use the in-source version. By default, the newer library (based on TIFFLIB_VERSION in tiffvers.h) is used. Expected Differences: Internal file structure of the resulting TIFF files differs from the previous devices: the tag directory is now at the end of each page and the tags might be in a different order. However, the semantics of the files as well as the image data are the same. One notable exception is the Group3Options tag, which was wrongly inserted into tiffpack, tiffcrle, and tifflzw compressed files before. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10317 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/tiff/contrib/addtiffo/addtiffo.c')
-rw-r--r--gs/tiff/contrib/addtiffo/addtiffo.c165
1 files changed, 165 insertions, 0 deletions
diff --git a/gs/tiff/contrib/addtiffo/addtiffo.c b/gs/tiff/contrib/addtiffo/addtiffo.c
new file mode 100644
index 000000000..9dc04e6a2
--- /dev/null
+++ b/gs/tiff/contrib/addtiffo/addtiffo.c
@@ -0,0 +1,165 @@
+/******************************************************************************
+ * $Id: addtiffo.c,v 1.6 2005/12/16 05:59:55 fwarmerdam Exp $
+ *
+ * Project: GeoTIFF Overview Builder
+ * Purpose: Mainline for building overviews in a TIFF file.
+ * Author: Frank Warmerdam, warmerdam@pobox.com
+ *
+ ******************************************************************************
+ * Copyright (c) 1999, Frank Warmerdam
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included
+ * in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ ******************************************************************************
+ *
+ * $Log: addtiffo.c,v $
+ * Revision 1.6 2005/12/16 05:59:55 fwarmerdam
+ * Major upgrade to support YCbCr subsampled jpeg images
+ *
+ * Revision 1.4 2004/09/21 13:31:23 dron
+ * Add missed include string.h.
+ *
+ * Revision 1.3 2000/04/18 22:48:31 warmerda
+ * Added support for averaging resampling
+ *
+ * Revision 1.2 2000/01/28 15:36:38 warmerda
+ * pass TIFF handle instead of filename to overview builder
+ *
+ * Revision 1.1 1999/08/17 01:47:59 warmerda
+ * New
+ *
+ * Revision 1.1 1999/03/12 17:46:32 warmerda
+ * New
+ *
+ * Revision 1.2 1999/02/11 22:27:12 warmerda
+ * Added multi-sample support
+ *
+ * Revision 1.1 1999/02/11 18:12:30 warmerda
+ * New
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "tiffio.h"
+
+void TIFFBuildOverviews( TIFF *, int, int *, int, const char *,
+ int (*)(double,void*), void * );
+
+/************************************************************************/
+/* main() */
+/************************************************************************/
+
+int main( int argc, char ** argv )
+
+{
+ int anOverviews[100]; /* TODO: un-hardwire array length, flexible allocate */
+ int nOverviewCount = 0;
+ int bUseSubIFD = 0;
+ TIFF *hTIFF;
+ const char *pszResampling = "nearest";
+
+/* -------------------------------------------------------------------- */
+/* Usage: */
+/* -------------------------------------------------------------------- */
+ if( argc < 2 )
+ {
+ printf( "Usage: addtiffo [-r {nearest,average,mode}]\n"
+ " tiff_filename [resolution_reductions]\n"
+ "\n"
+ "Example:\n"
+ " %% addtiffo abc.tif 2 4 8 16\n" );
+ return( 1 );
+ }
+
+ while( argv[1][0] == '-' )
+ {
+ if( strcmp(argv[1],"-subifd") == 0 )
+ {
+ bUseSubIFD = 1;
+ argv++;
+ argc--;
+ }
+ else if( strcmp(argv[1],"-r") == 0 )
+ {
+ argv += 2;
+ argc -= 2;
+ pszResampling = *argv;
+ }
+ else
+ {
+ fprintf( stderr, "Incorrect parameters\n" );
+ return( 1 );
+ }
+ }
+
+ /* TODO: resampling mode parameter needs to be encoded in an integer from this point on */
+
+/* -------------------------------------------------------------------- */
+/* Collect the user requested reduction factors. */
+/* -------------------------------------------------------------------- */
+ while( nOverviewCount < argc - 2 && nOverviewCount < 100 )
+ {
+ anOverviews[nOverviewCount] = atoi(argv[nOverviewCount+2]);
+ if( anOverviews[nOverviewCount] <= 0)
+ {
+ fprintf( stderr, "Incorrect parameters\n" );
+ return(1);
+ }
+ nOverviewCount++;
+ }
+
+/* -------------------------------------------------------------------- */
+/* Default to four overview levels. It would be nicer if it */
+/* defaulted based on the size of the source image. */
+/* -------------------------------------------------------------------- */
+ /* TODO: make it default based on the size of the source image */
+ if( nOverviewCount == 0 )
+ {
+ nOverviewCount = 4;
+
+ anOverviews[0] = 2;
+ anOverviews[1] = 4;
+ anOverviews[2] = 8;
+ anOverviews[3] = 16;
+ }
+
+/* -------------------------------------------------------------------- */
+/* Build the overview. */
+/* -------------------------------------------------------------------- */
+ hTIFF = TIFFOpen( argv[1], "r+" );
+ if( hTIFF == NULL )
+ {
+ fprintf( stderr, "TIFFOpen(%s) failed.\n", argv[1] );
+ return( 1 );
+ }
+
+ TIFFBuildOverviews( hTIFF, nOverviewCount, anOverviews, bUseSubIFD,
+ pszResampling, NULL, NULL );
+
+ TIFFClose( hTIFF );
+
+/* -------------------------------------------------------------------- */
+/* Optionally test for memory leaks. */
+/* -------------------------------------------------------------------- */
+#ifdef DBMALLOC
+ malloc_dump(1);
+#endif
+
+ return( 0 );
+}