Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

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-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.metadataworkinggroup.org/> SEE ALSO
"MWG Tags" in Image::ExifTool::TagNames, Image::ExifTool(3pm) perl v5.12.1 2010-03-04 Image::ExifTool::MWG(3)

Check Out this Related Man Page

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

NAME
Image::ExifTool::BZZ - Utility to decode BZZ compressed data SYNOPSIS
This module is used by Image::ExifTool DESCRIPTION
This module contains definitions required by Image::ExifTool to decode BZZ compressed data in DjVu images. NOTES
This code is based on ZPCodec and BSByteStream of DjVuLibre 3.5.21 (see additional copyrights and the first reference below), which are covered under the GNU GPL license. This is implemented as Image::ExifTool::BZZ instead of Compress::BZZ because I am hoping that someone else will write a proper Compress::BZZ module (with compression ability). AUTHOR
Copyright 2003-2010, Phil Harvey (phil at owl.phy.queensu.ca) Copyright 2002, Leon Bottou and Yann Le Cun Copyright 2001, AT&T Copyright 1999-2001, LizardTech Inc. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. REFERENCES
<http://djvu.sourceforge.net/> <http://www.djvu.org/> SEE ALSO
Image::ExifTool::DjVu(3pm), Image::ExifTool(3pm) perl v5.12.1 2010-01-04 Image::ExifTool::BZZ(3)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl strict

What is the sake of using `use strict;` in perl codes? and how can avoid it?.TnX. (8 Replies)
Discussion started by: Zaxon
8 Replies

2. Shell Programming and Scripting

New PERL guru's help on strict.pm

I opened strict.pm and found some not understandable stuff, please let me know if you have any Idea on the same. 1) Line 23 => $bits |= (what is $= here how it affect the statement) 2) Line 36 => $^H (what is that I haven't found any statement on this in google) 3) Line 41 =>... (3 Replies)
Discussion started by: jatanig
3 Replies

3. Shell Programming and Scripting

awk substitute variable value in nth field

I have a large csv file that looks like this: The 3rd field is a unix time stamp that I want to convert to human readable. I wrote a bash script with this code: IFS=$',' cat $1 | while read ID user DATE text flags read; do echo -e "$ID,$user,$(date -d @$DATE),$text,$flags,$read... (3 Replies)
Discussion started by: stumpyuk
3 Replies

4. UNIX for Dummies Questions & Answers

How to install Unix??

Hi Experts, I am a new born trying to start learning UNIX so please be patient. I have downloaded Free BSD 9.0 Release i386 All recently.Upon extracting it I found four Disc Image File. FreeBSD-9.0-RELEASE-i386-bootonly FreeBSD-9.0-RELEASE-i386-disc1 FreeBSD-9.0-RELEASE-i386-dvd1... (1 Reply)
Discussion started by: RishabhK
1 Replies

5. UNIX for Advanced & Expert Users

Ssh disable strict checking

What are the different ways to disable ssh strict checking? I've seen this mentioned a few times but it doesn't seem to be working. $ ssh -o 'StrictHostKeyChecking no' admin@hostnamehttp://docs.oracle.com/cd/E35328_01/E35336/html/vmcli-ssh.html Is there a file somewhere in /etc that I could... (4 Replies)
Discussion started by: cokedude
4 Replies