Image::ExifTool::BuildTagLookup(3pm) | User Contributed Perl Documentation | Image::ExifTool::BuildTagLookup(3pm) |
Image::ExifTool::BuildTagLookup - Build ExifTool tag lookup tables
This module is used to generate the tag lookup tables in Image::ExifTool::TagLookup.pm and tag name documentation in Image::ExifTool::TagNames.pod, as well as HTML tag name documentation. It is used before each new ExifTool release to update the lookup tables and documentation, but it is not used otherwise. It also performs some validation and consistency checks on the tag tables.
use Image::ExifTool::BuildTagLookup; $builder = new Image::ExifTool::BuildTagLookup; # update Image::ExifTool::TagLookup $ok = $builder->WriteTagLookup('lib/Image/ExifTool/TagLookup.pm'); # update the tag name documentation $ok = $builder->WriteTagNames('lib/Image/ExifTool/TagNames.pod','html'); # print some statistics my $count = $$builder{COUNT}; foreach (sort keys %$count) { printf "%5d %s\n", $$count{$_}, $_; }
Copyright 2003-2018, 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.
Image::ExifTool(3pm), Image::ExifTool::TagLookup(3pm), Image::ExifTool::TagNames(3pm)
2021-04-26 | perl v5.28.1 |