Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

image::exiftool::afcp(3) [suse man page]

Image::ExifTool::AFCP(3)				User Contributed Perl Documentation				  Image::ExifTool::AFCP(3)

NAME
Image::ExifTool::AFCP - Read/write AFCP trailer SYNOPSIS
This module is used by Image::ExifTool DESCRIPTION
This module contains definitions required by Image::ExifTool to extract information from the AFCP trailer. Although the AFCP specification is compatible with various file formats, ExifTool currently only processes AFCP in JPEG images. NOTES
AFCP is a specification which allows meta information (including IPTC) to be appended to the end of a file. It is a poorly designed protocol because (like TIFF) it uses absolute offsets to specify data locations. This is a huge blunder because it makes the AFCP information dependent on the file length, so it is easily invalidated by image editing software which doesn't recognize the AFCP trailer to fix up these offsets when the file length changes. ExifTool will attempt to fix these invalid offsets if possible. Scanning for AFCP information may be time consuming, especially when reading from a sequential device, since the information is at the end of the file. In these instances, the ExifTool FastScan option may be used to disable scanning for AFCP information. AUTHOR
Copyright 2003-2010, Phil Harvey (phil at owl.phy.queensu.ca) This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. REFERENCES
<http://www.tocarte.com/media/axs_afcp_spec.pdf> SEE ALSO
"AFCP Tags" in Image::ExifTool::TagNames, Image::ExifTool(3pm) perl v5.12.1 2010-01-04 Image::ExifTool::AFCP(3)

Check Out this Related Man Page

Image::ExifTool::MWG(3pm)				User Contributed Perl Documentation				 Image::ExifTool::MWG(3pm)

NAME
Image::ExifTool::MWG - Metadata Working Group support SYNOPSIS
# enable MWG tags (strict mode enabled by default) use Image::ExifTool::MWG; # disable MWG strict mode $Image::ExifTool::MWG::strict = 0; DESCRIPTION
The MWG module contains tag definitions which are designed to simplify implementation of the Metadata Working Group guidelines. These special MWG composite tags are enabled simply by loading this module: use Image::ExifTool::MWG; When the MWG module is loaded, "strict MWG conformance" is enabled by default. In this mode, ExifTool will generate a Warning tag instead of extracting EXIF, IPTC and XMP from non-standard locations. The strict mode may be disabled by setting the MWG "strict" flag to zero (either before or after loading the MWG module): $Image::ExifTool::MWG::strict = 0; AUTHOR
Copyright 2003-2011, Phil Harvey (phil at owl.phy.queensu.ca) This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. REFERENCES
<http://www.metadataworkinggroup.org/> SEE ALSO
"MWG Tags" in Image::ExifTool::TagNames, Image::ExifTool(3pm) perl v5.12.4 2011-01-31 Image::ExifTool::MWG(3pm)
Man Page

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Removing trailer from a flat file!!!

Hi, I get some flat files with trailer which gives the totol records count and i want to remove the trailer from the file. i used the following command it works fine with a single file. cat file_name | grep -v 'Total records:' > file1 mv file file_name But i dont know how to remove the... (12 Replies)
Discussion started by: kumarsaravana_s
12 Replies

2. Shell Programming and Scripting

How to modify the last line in the file.

Hi, I have data file which has header, data and trailer. The problem is that always the trailer is padded with the last line data. i want to split the trailer and bring it to next line i.e end of line. But i dont have any specific string to identify the trailer. Only way is that all data... (3 Replies)
Discussion started by: senthil_is
3 Replies

3. Shell Programming and Scripting

Inserting a trailer

I am new to unix... cn u plz tel me how to add a trailer as a last record of each file. (3 Replies)
Discussion started by: amitpta
3 Replies

4. Shell Programming and Scripting

Problem with sed in perl!!

Hi, I am facing an issue with sed in perl. I have a file which has 2 header lines and one trailer line. I need to process the file without these headers and trailer. My file looks like : File.txt:- Header1 Header2 data1 data2 trailer For removing header and trailer from file I am using... (5 Replies)
Discussion started by: abhisharma23
5 Replies

5. UNIX for Dummies Questions & Answers

Image software

Hi!!! Does anyone know a unix program called "image"? If yes can you tell me if and from where I can get it? Thnx a lot!!! (1 Reply)
Discussion started by: JimmyC530
1 Replies

6. Shell Programming and Scripting

Totals in a file - incorrectly displaying

Afternoon, I have a script which creates/modifies data into a formatted csv. The trailer record should display 2 columns, the first is a static entry of "T" to identify it as a trailer record. The 2nd is a total of amounts in a column throughout the entire file. My total isn't displaying... (8 Replies)
Discussion started by: mcclunyboy
8 Replies

7. Hardware

Image a hd

Could I please get recommendations on how to image a hd. What software is best and what methods are best? After a lot of googling these programs are the most talked about that I saw. Is one better than other? Or is one better for certain file systems? I plan on doing this to a ntfs hd. ... (4 Replies)
Discussion started by: cokedude
4 Replies

8. Shell Programming and Scripting

Adding the trailers in two files

I have two files File1 has trailer as below TR|2|120 File2 has trailer as below TR|1|100 it should add both the fields from trailer of file 1 and 2....so that file2 has a trailer as TR|3|220 (3 Replies)
Discussion started by: Deepak62828r
3 Replies

9. Shell Programming and Scripting

Perl module

I am recieiving an out of memory issue in my perl module while updating the records in the oracle table. Let me know what are the check or troubleshoot steps need to be done from my end to fix the issue. (1 Reply)
Discussion started by: ramkumar15
1 Replies