Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 74) sorted by relevance

123

/libtiff-4.0.7/archive/tools/
H A Dsgi2tiff.c60 IMAGE *in; in main() local
100 if (in == NULL) in main()
109 if (in->zsize == 1) in main()
131 if (in->zsize > 3) { in main()
147 cpContig(in, out); in main()
150 (void) iclose(in); in main()
203 g = r + in->xsize; in cpContig()
204 b = g + in->xsize; in cpContig()
224 g = r + in->xsize; in cpContig()
225 b = g + in->xsize; in cpContig()
[all …]
H A Dras2tiff.c67 FILE *in; in main() local
93 in = fopen(argv[optind], "rb"); in main()
94 if (in == NULL) { in main()
98 if (fread(&h, sizeof (h), 1, in) != 1) { in main()
100 fclose(in); in main()
125 fclose(in); in main()
136 fclose(in); in main()
144 fclose(in); in main()
150 fclose(in); in main()
236 if (fread(buf, linebytes, 1, in) != 1) { in main()
[all …]
/libtiff-4.0.7/tools/
H A Dtiff2rgba.c66 TIFF *in, *out; in main() local
123 in = TIFFOpen(argv[optind], "r"); in main()
124 if (in != NULL) { in main()
126 if (!tiffcvt(in, out) || in main()
129 (void) TIFFClose(in); in main()
132 } while (TIFFReadDirectory(in)); in main()
133 (void) TIFFClose(in); in main()
141 cvt_by_tile( TIFF *in, TIFF *out ) in cvt_by_tile() argument
257 cvt_by_strip( TIFF *in, TIFF *out ) in cvt_by_strip() argument
395 TIFFError(TIFFFileName(in), in cvt_whole_image()
[all …]
H A Dtiffcp.c166 TIFF* in; in main() local
283 if (in == NULL) { in main()
314 (void) TIFFClose(in); in main()
963 TIFFFileName(in), TIFFCurrentDirectory(in)); in DECLAREcpFunc()
968 TIFFFileName(in), TIFFCurrentDirectory(in)); in DECLAREcpFunc()
1171 *out++ = *in++; in cpStripToTile()
1173 in += inskew; in cpStripToTile()
1189 *out++ = *in++; in cpContigBufToSeparateBuf()
1194 in += inskew; in cpContigBufToSeparateBuf()
1209 *out++ = *in++; in cpSeparateBufToContigBuf()
[all …]
H A Dthumbnail.c82 TIFF* in; in main() local
109 if( in == NULL ) in main()
119 if (in != NULL) { in main()
127 (void) TIFFClose(in); in main()
275 cpTags(TIFF* in, TIFF* out) in cpTags() argument
331 TIFFError(TIFFFileName(in), in cpStrips()
371 cpIFD(TIFF* in, TIFF* out) in cpIFD() argument
373 cpTags(in, out); in cpIFD()
374 if (TIFFIsTiled(in)) { in cpIFD()
375 if (!cpTiles(in, out)) in cpIFD()
[all …]
H A Dtiffsplit.c60 TIFF *in, *out; in main() local
71 in = TIFFOpen(argv[1], "r"); in main()
72 if (in != NULL) { in main()
89 if (!tiffcp(in, out)) in main()
93 (void) TIFFClose(in); in main()
158 tiffcp(TIFF* in, TIFF* out) in tiffcp() argument
224 if (TIFFIsTiled(in)) in tiffcp()
225 return (cpTiles(in, out)); in tiffcp()
227 return (cpStrips(in, out)); in tiffcp()
231 cpStrips(TIFF* in, TIFF* out) in cpStrips() argument
[all …]
H A Dpal2rgb.c48 static void cpTags(TIFF* in, TIFF* out);
82 TIFF *in, *out; in main() local
116 in = TIFFOpen(argv[optind], "r"); in main()
117 if (in == NULL) in main()
141 cpTags(in, out); in main()
192 if (!TIFFReadScanline(in, ibuf, row, 0)) in main()
206 if (!TIFFReadScanline(in, ibuf, row, 0)) in main()
227 (void) TIFFClose(in); in main()
327 TIFFError(TIFFFileName(in), in cpTag()
390 cpTags(TIFF* in, TIFF* out) in cpTags() argument
[all …]
H A Dtiff2bw.c109 static void cpTags(TIFF* in, TIFF* out);
115 TIFF *in, *out; in main() local
159 in = TIFFOpen(argv[optind], "r"); in main()
160 if (in == NULL) in main()
187 TIFFGetField(in, TIFFTAG_IMAGEWIDTH, &w); in main()
188 TIFFGetField(in, TIFFTAG_IMAGELENGTH, &h); in main()
199 cpTags(in, out); in main()
261 rowsize = TIFFScanlineSize(in); in main()
265 if (TIFFReadScanline(in, in main()
375 TIFFError(TIFFFileName(in), in cpTag()
[all …]
H A Dppm2tiff.c97 FILE *in; in main() local
139 in = fopen(infile, "rb"); in main()
140 if (in == NULL) { in main()
146 in = stdin; in main()
152 if (fgetc(in) != 'P') in main()
154 switch (fgetc(in)) { in main()
179 if (feof(in)) in main()
181 c = fgetc(in); in main()
189 c = fgetc(in); in main()
194 ungetc(c, in); in main()
[all …]
H A Drgb2ycbcr.c66 static int tiffcvt(TIFF* in, TIFF* out);
73 TIFF *in, *out; in main() local
128 in = TIFFOpen(argv[optind], "r"); in main()
129 if (in != NULL) { in main()
131 if (!tiffcvt(in, out) || in main()
136 } while (TIFFReadDirectory(in)); in main()
137 (void) TIFFClose(in); in main()
285 tiffcvt(TIFF* in, TIFF* out) in tiffcvt() argument
302 TIFFError(TIFFFileName(in), in tiffcvt()
312 TIFFError(TIFFFileName(in), in tiffcvt()
[all …]
H A Dtiffdither.c48 if (TIFFGetField(in, tag, &v)) TIFFSetField(out, tag, v)
61 fsdither(TIFF* in, TIFF* out) in fsdither() argument
89 if (TIFFReadScanline(in, inputline, 0, 0) <= 0) in fsdither()
101 if (TIFFReadScanline(in, inputline, i, 0) <= 0) in fsdither()
206 TIFF *in, *out; in main() local
248 in = TIFFOpen(argv[optind], "r"); in main()
249 if (in == NULL) in main()
256 TIFFGetField(in, TIFFTAG_BITSPERSAMPLE, &bitspersample); in main()
266 TIFFGetField(in, TIFFTAG_IMAGELENGTH, &imagelength); in main()
295 fsdither(in, out); in main()
[all …]
H A Dtiffcrop.c2191 TIFF *in = NULL; in main() local
2444 TIFFClose(in); in main()
2722 uint8 *src = in; in extractContigSamplesBytes()
2789 uint8 *src = in; in extractContigSamples8bits()
2867 uint8 *src = in; in extractContigSamples16bits()
2956 uint8 *src = in; in extractContigSamples24bits()
3050 uint8 *src = in; in extractContigSamples32bits()
3154 uint8 *src = in; in extractContigSamplesShifted8bits()
3235 uint8 *src = in; in extractContigSamplesShifted16bits()
3325 uint8 *src = in; in extractContigSamplesShifted24bits()
[all …]
H A Dtiffmedian.c94 TIFF *in, *out; variable
159 in = TIFFOpen(argv[optind], "r"); in main()
160 if (in == NULL) in main()
176 TIFFGetField(in, TIFFTAG_PLANARCONFIG, &config); in main()
208 get_histogram(in, ptr); in main()
281 quant_fsdither(in, out); in main()
283 quant(in, out); in main()
351 get_histogram(TIFF* in, Colorbox* box) in get_histogram() argument
761 quant(TIFF* in, TIFF* out) in quant() argument
814 quant_fsdither(TIFF* in, TIFF* out) in quant_fsdither() argument
[all …]
/libtiff-4.0.7/
H A DHOWTO-RELEASE7 and that these tools are in your executable search path prior to
10 1.4.16 is needed in order to avoid bugs in m4. These packages may
28 Take ChangeLog entries and html-ify in there.
35 5. Increment the release version in configure.ac. Put 'alpha' or
42 Version should be updated in two places: in the second argument of the
43 AC_INIT macro and in LIBTIFF_xxx_VERSION variables.
45 6. Update library ELF versioning in configure.ac (LIBTIFF_CURRENT,
50 please follow the rules listed in configure.ac. At a bare minimum,
69 tree so that the source tree is kept in a pristine state. This
86 in the source tree.
[all …]
H A DChangeLog49 of source and destination buffer in memcpy() call in
328 only built in the build tree for testing. Old files are put in
1560 in some cases.
2979 is found (in addition to an assert for developers) in
3109 in a portable way and performing necessary substitutions in
4177 in directory.
5400 * Makefile.in, /tools/{Makefile.in, makefile.vc}:
5508 * Makefile.in: Fixes in using MAKEFLAGS as per bug
6370 in keeping with TIFF 6.0 standard in tiff.h
6973 SAMPLEFORMAT_VOID in TIFFDefaultDirectory() in tif_dir.c.
[all …]
H A Daclocal.m475 # it makes $ac_aux_dir quite unusable in subdirectories: in the top
152 # written in clear, in which case automake, when reading aclocal.m4,
189 # in D".
241 case $depmode in
599 case $_am_header in
620 case $am_aux_dir in
757 case $am_aux_dir in
827 for am_i in 1 2; do
884 case `pwd` in
888 case $srcdir in
[all …]
H A DREADME6 This file is just a placeholder; all the documentation is now in
7 HTML in the html directory. To view the documentation point your
37 also be interested in knowing about it and, hopefully, be acknowledged.
46 that (i) the above copyright notices and this permission notice appear in
48 Sam Leffler and Silicon Graphics may not be used in any advertising or
H A DHOWTO-SECURITY-RELEASE6 and other security holes in libtiff put many users at risk. To that end
9 go out in a standard release.
15 in libtiff. Make sure to prefix subject with [vs]. More info at:
/libtiff-4.0.7/m4/
H A Dice_find_athena.m421 dnl Put Athena include directory in athena_includes,
22 dnl put Athena library directory in athena_libraries,
42 [Athena include files are in DIR]),
46 [Athena libraries are in DIR]),
71 # X11/Xaw/Text.h is in the standard search path.
75 # X11/Xaw/Text.h is not in the standard search path.
76 # Locate it and put its directory in `athena_includes'
126 # libXaw.a is in the standard search path.
158 dnl case "$X_LIBS" in
175 athena_libraries_result="in default path"
[all …]
H A Dlibtool.m452 [case `pwd` in
206 case $host_os in
658 case $[1] in
1224 case $ECHO in
1289 case $host in
1384 case $host in
1413 case $host in
3535 case $LD in
3825 # Keep in sync with func_dll_def_p in the libtool script
3843 case $host in
[all …]
H A Dacinclude.m441 dnl GCC. -W option has been renamed in -wextra in latest gcc versions.
261 case $host_cpu in
270 for ax_lib in ${ax_check_libs}; do
406 for ax_lib in ${ax_check_libs}; do
544 for ax_lib in ${ax_check_libs}; do
657 dnl It gets checked for in the link test anyway.
694 dnl none: in case threads are in libc; should be tried before -Kthread and
710 case "${host_cpu}-${host_os}" in
730 for flag in $ax_pthread_flags; do
732 case $flag in
[all …]
H A Dltoptions.m4130 case $host in
171 case $enableval in
178 for pkg in $enableval; do
225 case $enableval in
232 for pkg in $enableval; do
279 case $enableval in
286 for pkg in $enableval; do
332 case $host,$enable_shared in
338 [case $withval in
387 case $withval in
[all …]
/libtiff-4.0.7/contrib/pds/
H A DREADME11 You probably don't remember me, but I sent in a couple of bug fixes
15 local version of the TIFF library in hopes that you will want to
20 reasonable extent and we've been successfully using them in our code
24 figured I'd see if you were interested in using them before I went to
38 store it in a big array, convert it to RGBA, or draw it directly to the
44 data is organized in strips, so actually I'd appreciate it if you had
48 ReadRGBA() in terms of the image iterator, but I haven't done that.
54 us to store satellite imaging-specific information in a TIFF format,
59 offset, which lists the position in the file at which to find a private
68 tif_dirwrite.c files in order to access the various fetching routines
[all …]
/libtiff-4.0.7/contrib/mfs/
H A DREADME12 I noticed in the README from libtiff that you would like to know about
18 in Sweden and Denmark.
22 There is obviously a lot of work that has gone in to libtiff and the
27 file in to memory and did not want to waste I/O writing it out again
29 pass up to TIFFClientOpen to simulate a file in memory. I have attached
/libtiff-4.0.7/test/
H A DTiffTestCommon.cmake8 # that (i) the above copyright notices and this permission notice appear in
10 # Sam Leffler and Silicon Graphics may not be used in any advertising or
37 …message(FATAL_ERROR "Returned failed status ${TEST_STATUS}! Output (if any) is in \"${native_outf…
56 …message(FATAL_ERROR "Returned failed status ${TEST_STATUS}! Output (if any) is in \"${native_outf…
72 …message(FATAL_ERROR "Returned failed status ${TEST_STATUS}! Output (if any) is in \"${native_outf…
86 …message(FATAL_ERROR "Returned failed status ${TEST_STATUS}! Output (if any) is in \"${native_outf…

123