Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tiffset(1) [debian man page]

TIFFSET(1)						      General Commands Manual							TIFFSET(1)

NAME
tiffset - set a field in a TIFF header SYNOPSIS
tiffset [ options ] filename.tif DESCRIPTION
Tiffset sets the value of a TIFF header to a specified value. OPTIONS
-d dirnumber change the current directory (starting at 0). -s tagnumber [ count ] value ... Set the value of the named tag to the value or values specified. -sd diroffset change the current directory by offset. -sf tagnumber filename Set the value of the tag to the contents of filename. This option is supported for ASCII tags only. EXAMPLES
The following example sets the image description tag(270) of a.tif to the contents of the file descrip: tiffset -sf 270 descrip a.tif The following example sets the artist tag(315) of a.tif to the string ``Anonymous'': tiffset -s 315 Anonymous a.tif This example sets the resolution of the file a.tif to 300 dpi: tiffset -s 296 2 a.tif tiffset -s 282 300.0 a.tif tiffset -s 283 300.0 a.tif Set the photometric interpretation of the third page of a.tif to min-is-black (ie. inverts it): tiffset -d 2 -s 262 1 a.tif SEE ALSO
tiffdump(1), tiffinfo(1), tiffcp(1), libtiff(3TIFF) Libtiff library home page: http://www.remotesensing.org/libtiff/ libtiff November 21, 2004 TIFFSET(1)

Check Out this Related Man Page

TIFFSET(1)						      General Commands Manual							TIFFSET(1)

NAME
tiffset - set a field in a TIFF header SYNOPSIS
tiffset [ options ] filename.tif DESCRIPTION
Tiffset sets the value of a TIFF header to a specified value. OPTIONS
-d dirnumber change the current directory (starting at 0). -s tagnumber [ count ] value ... Set the value of the named tag to the value or values specified. -sd diroffset change the current directory by offset. -sf tagnumber filename Set the value of the tag to the contents of filename. This option is supported for ASCII tags only. EXAMPLES
The following example sets the image description tag(270) of a.tif to the contents of the file descrip: tiffset -sf 270 descrip a.tif The following example sets the artist tag(315) of a.tif to the string ``Anonymous'': tiffset -s 315 Anonymous a.tif This example sets the resolution of the file a.tif to 300 dpi: tiffset -s 296 2 a.tif tiffset -s 282 300.0 a.tif tiffset -s 283 300.0 a.tif Set the photometric interpretation of the third page of a.tif to min-is-black (ie. inverts it): tiffset -d 2 -s 262 1 a.tif SEE ALSO
tiffdump(1), tiffinfo(1), tiffcp(1), libtiff(3TIFF) Libtiff library home page: http://www.remotesensing.org/libtiff/ libtiff November 21, 2004 TIFFSET(1)
Man Page

13 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Command syntax

Here's my situation. I am trying to move all files from one directory to another. I have the following requirements: 1) Move all files in /myfiles/wip matching pattern "*.tif" to /work/in that are at least 10 minutes old (or older). 2) When the files are moved, they need to be moved into... (2 Replies)
Discussion started by: dsimpg1
2 Replies

2. Shell Programming and Scripting

Ascending & Descending order numbers

Dear All, I have below attached file in which i have many nos, i want the last ascending order nos. The brief description is given below. File 315 381 432 315 381 432 315 381 432 315 381 432 315 381 432 (6 Replies)
Discussion started by: pravani1
6 Replies

3. UNIX for Dummies Questions & Answers

joining variable to the end of a file name

hi all i have a directory which contain file 20060101-66666-09-08-0.tif 20060101-77777-11-12-0.tif 20051231-54221-66-55.tif 20051231-54221-66-44.tif as you can see the name of the two last files is shorter then the first ones i want to take all the files with the shorter name and to add to... (7 Replies)
Discussion started by: naamas03
7 Replies

4. Shell Programming and Scripting

renaming files

Hi all, using a utility image file was named starting with blank space and a blank space in between. I want to rename the files. file names are in the format " sb 12.tif"," sb 13.tif"," sb 14.tif" the files are in thousands. i want to rename as 12.tif, 13.tif, 14.tif.... thanks. (3 Replies)
Discussion started by: ahkverma
3 Replies

5. Shell Programming and Scripting

perl:extract 169008 with split function on /atrclips/u90/2009/169_008

On a line in a file:: /atrclips/u90/2009/169_008/Y5288900/SATHSWR_P1/1809853_SATHSWR_P1.tif,00018098539415200901_SATHSWR_P1.tif How do I use the split function to extract 169008......I tried .... foreach my $line (@lines) { ... (3 Replies)
Discussion started by: bandar007
3 Replies

6. UNIX for Dummies Questions & Answers

help with substitution

Hello, I have a file with 10,000+ records which look like this: Image3992170.tif 4/21/200811:42:09AM 3,373.13KB Image3993265.tif 4/11/20087:17:58PM 2,369.72KB Image3996764.tif 5/2/200811:01:28AM 2,155.87KB Image3997700.tif ... (4 Replies)
Discussion started by: lotusdeva
4 Replies

7. Shell Programming and Scripting

Need explanation on Anonymous hash in PERL!!

Hi, I have doubt regarding the Anonymous hash. For creating a object we are generally using Anonymous hash. My Doubt is: Why we are only using Anonymous hash?? Instead of Anonymous hash can we use global hash variable and take its reference for creating an object using same bless function??... (0 Replies)
Discussion started by: jatanig
0 Replies

8. Shell Programming and Scripting

cannot stat error

I'm trying to find .tif files in a directory tree and rename them prior to zipping them and moving them to another dir. this is my code: cd $TMPPATH pwd ctr=0 for i in 'find . -name "*.tif"' do let "ctr+=1" newtifname=$DATEDIR"_"$SEQ"_"$ctr".tif" mv "$i"... (6 Replies)
Discussion started by: rss0213
6 Replies

9. Shell Programming and Scripting

For loop sequence issue

Hi. I have a bunch of tif images in the directory with the following naming convention: 1.tif 2.tif 3.tif . . . n.tif There are over 1000 tif images in this dir. I'm running a for loop to rename *.tif in this dir to <YYYYMMDD><NNNN>.tif, where YYYYMMDD is the current date (duh), and... (4 Replies)
Discussion started by: rss0213
4 Replies

10. What is on Your Mind?

New Forum for Anonymous Posters

Just created an experimental new forum for anonymous posters. Anonymous Users Forums - The UNIX and Linux Forums Feel free to comment about it here. (2 Replies)
Discussion started by: Neo
2 Replies

11. Programming

Script for creating a directory & move the .tif files in it.

Hi Team, I have thousands of TIF files which are converted from PDF. Below is a sample of it. LH9406_BLANCARAMOS_2012041812103210320001.tif LH9406_BLANCARAMOS_2012041812103210320002.tif LH9406_BLANCARAMOS_2012041812103210320003.tif LH9411_ANGENIAHUTCHINSON_2012041812102510250001.tif... (9 Replies)
Discussion started by: paragnehete
9 Replies

12. AIX

Assistance w/-44P-270

Hello, I was recently given an RS/6000-44P-270 and am attempting to resurrect it for personal use. My current status is as follows: 1 - Required to restore default boot sequence (floppy, scsi, ethernet), 2 - BOOTP fails, restarting does not help surpass this. What is the most likely... (2 Replies)
Discussion started by: RAVC01
2 Replies

13. Shell Programming and Scripting

Get second line and append to part of first line

I have a file (test) that looks like below and I am trying to match for *.tif and print the output to another file expecting the output to be something like /opt/apps/image/35645-3456.tif. I would greatly appreciate any ideas you can provide. #cat test /opt/apps/image/3456.tif 35645... (1 Reply)
Discussion started by: Alex A
1 Replies