1Image::ExifTool::MWG(3)User Contributed Perl DocumentatioInmage::ExifTool::MWG(3)
2
3
4
6 Image::ExifTool::MWG - Metadata Working Group support
7
9 # enable MWG tags (strict mode enabled by default)
10 use Image::ExifTool::MWG;
11
12 # disable MWG strict mode
13 $Image::ExifTool::MWG::strict = 0;
14
16 The MWG module contains tag definitions which are designed to simplify
17 implementation of the Metadata Working Group guidelines. These special
18 MWG composite tags are enabled simply by loading this module:
19
20 use Image::ExifTool::MWG;
21
22 When the MWG module is loaded, "strict MWG conformance" is enabled by
23 default. In this mode, ExifTool will generate a Warning tag instead of
24 extracting EXIF, IPTC and XMP from non-standard locations. The strict
25 mode may be disabled by setting the MWG "strict" flag to zero (either
26 before or after loading the MWG module):
27
28 $Image::ExifTool::MWG::strict = 0;
29
31 Copyright 2003-2011, Phil Harvey (phil at owl.phy.queensu.ca)
32
33 This library is free software; you can redistribute it and/or modify it
34 under the same terms as Perl itself.
35
37 <http://www.metadataworkinggroup.org/>
38
40 "MWG Tags" in Image::ExifTool::TagNames, Image::ExifTool(3pm)
41
42
43
44perl v5.12.4 2011-08-18 Image::ExifTool::MWG(3)