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 Composite tags
10 use Image::ExifTool::MWG;
11 Image::ExifTool::MWG::Load();
12
13 # enable MWG strict mode
14 $Image::ExifTool::MWG::strict = 1;
15
16 # disable MWG strict mode
17 $Image::ExifTool::MWG::strict = 0;
18
20 The MWG module contains Composite tag definitions which are designed to
21 simplify implementation of the Metadata Working Group guidelines.
22 These special MWG Composite tags are enabled by calling the Load()
23 method:
24
25 use Image::ExifTool::MWG;
26 Image::ExifTool::MWG::Load();
27
28 By default, loading the MWG Composite tags enables "strict MWG
29 conformance" unless previously enabled or disabled by the user. In
30 this mode, ExifTool will generate a Warning instead of extracting EXIF,
31 IPTC and XMP from non-standard locations. The strict mode may be
32 disabled or enabled at any time by setting the MWG "strict" flag to 0
33 or 1. eg)
34
35 $Image::ExifTool::MWG::strict = 0;
36
37 This module also contains the MWG XMP tags which are loaded
38 automatically by ExifTool as required, and are independent of the MWG
39 Composite tags which must be loaded explicitly as described above.
40
42 Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
43
44 This library is free software; you can redistribute it and/or modify it
45 under the same terms as Perl itself.
46
48 <http://www.metadataworkinggroup.org/>
49
51 "MWG Tags" in Image::ExifTool::TagNames, Image::ExifTool(3pm)
52
53
54
55perl v5.32.1 2021-04-26 Image::ExifTool::MWG(3)