Is there such thing as a ".tiff editor?"

2

1

What I'm looking for it something that automatically translates the hex in tiff files into the corresponding categories and values that are found in a tiff file, and hopefully be able to add/remove text rather easily. Does such a thing exist?

Edit: On a mac

Tony Stark

Posted 2009-08-25T10:07:10.603

Reputation: 1 930

Question was closed 2014-05-12T22:51:10.493

2Just a clarification. Despite the title it sounds like what you are really looking for is a tool to extract the TIFF TAGS to a new file. Is this correct? – JohnFx – 2009-08-25T12:56:27.453

Answers

2

If it is just a parser rather than an editor you want,
Hachoir parser might work -- though I have never tried it myself.

In general, I think there should be modules in Perl, Python, etc to parse TIFF files.
Therefore, there should be tools to dump headers for TIFF.
Hachoir parser is a Python tool.

nik

Posted 2009-08-25T10:07:10.603

Reputation: 50 788

1

Are you after ImageMagiks identify?

mlk

Posted 2009-08-25T10:07:10.603

Reputation: 123

0

TIFF files are images, so there's no much text in them. Most of the image processing programs will be able to handle them (Photoshop for example).

Since you mention text, I'm guessing that you have faxes saved as TIFF files, so text in them is not really text--you'll need OCR software which will scan TIFF file into text document which you can then edit.

Unfortunately I can't recommend free image editing or OCR software on Mac since I'm not a Mac user, but perhaps someone can chime in.

Domchi

Posted 2009-08-25T10:07:10.603

Reputation: 2 557

actually, no - i was wondering if software existed where for example the tiff header would be translated into english, etc. So instead of just seeing hex, I would see the file broken up into the header, IFDs, etc. Basically, I need to convert a custom image file format into a tif file and it seems intimidating to have to literally write python scripts that write hex to a file instead of english, which is what i am used to. – Tony Stark – 2009-08-25T10:52:22.323

The headers are not in Hex. All data is stored in binary representation regardless of the file type. It sounds like whatever you are viewing those headers with is displaying hex, which is a common representation of the Tag header numbers and offsets. Are you sure you are looking at the actual tag data instead of the tag identifiers? – JohnFx – 2009-08-25T12:59:44.067